1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-11 00:49:02 +00:00

Made NSE use proxychains too.

This commit is contained in:
henri
2013-04-22 19:35:42 +00:00
parent 1455bf0624
commit 1b45bfef14

View File

@@ -91,6 +91,10 @@ static nsock_pool new_pool (lua_State *L)
nsp_set_proxychain(nsp, o.proxy_chain);
nsp_setbroadcast(nsp, true);
if (o.proxy_chain) {
nsp_set_proxychain(nsp, o.proxy_chain);
}
nspp = (nsock_pool *) lua_newuserdata(L, sizeof(nsock_pool));
*nspp = nsp;