Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrofl0r <rofl0r@users.noreply.github.com>2021-02-05 04:50:39 +0300
committerrofl0r <rofl0r@users.noreply.github.com>2021-02-05 04:50:39 +0300
commit918855deed4684eccc93a95c82fec840569fb334 (patch)
treecd6f8099c98e864e40c7cb586157f9ba16c61be1
parent181cc0f4142467ebe81d2e3636f760687ce4caca (diff)
proxy_getaddrinfo(): debug: print hints->ai_flags
-rw-r--r--src/core.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index ade82f1..18591ac 100644
--- a/src/core.c
+++ b/src/core.c
@@ -964,9 +964,10 @@ int proxy_getaddrinfo(const char *node, const char *service, const struct addrin
struct addrinfo *p;
char buf[1024];
int port, af = AF_INET;
- PFUNC();
-// printf("proxy_getaddrinfo node %s service %s\n",node,service);
+ PDEBUG("proxy_getaddrinfo node:%s service: %s, flags: %d\n",
+ node?node:"",service?service:"",hints?(int)hints->ai_flags:0);
+
space = calloc(1, sizeof(struct addrinfo_data));
if(!space) goto err1;