1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-20 14:39:02 +00:00

Replaced a couple macros by corresponding static inline functions.

Removed unused PROXY_CTX_NODES() macro.
This commit is contained in:
henri
2013-04-22 19:32:20 +00:00
parent 6c0d537efb
commit da1559b237
4 changed files with 21 additions and 12 deletions

View File

@@ -268,7 +268,7 @@ nsock_event_id nsock_connect_tcp(nsock_pool nsp, nsock_iod ms_iod, nsock_ev_hand
if (nsi->px_ctx) {
struct proxy_node *current;
current = PROXY_CTX_CURRENT(nsi->px_ctx);
current = proxy_ctx_node_current(nsi->px_ctx);
assert(current != NULL);
memcpy(&nsi->px_ctx->target_ss, saddr, sslen);