From 918855deed4684eccc93a95c82fec840569fb334 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Fri, 5 Feb 2021 01:50:39 +0000 Subject: [PATCH] proxy_getaddrinfo(): debug: print hints->ai_flags --- src/core.c | 5 +++-- 1 file 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;