sock: add debug messages to opensock()
log entering opensock and successful return of getaddrinfo. This allows to detect dns timeouts from looking at the logs. Signed-off-by: Michael Adam <obnox@samba.org>
This commit is contained in:
parent
e82080a5f6
commit
836d4534d6
@ -84,6 +84,9 @@ int opensock (const char *host, int port, const char *bind_to)
|
||||
assert (host != NULL);
|
||||
assert (port > 0);
|
||||
|
||||
log_message(LOG_INFO,
|
||||
"opensock: opening connection to %s:%d", host, port);
|
||||
|
||||
memset (&hints, 0, sizeof (struct addrinfo));
|
||||
hints.ai_family = AF_UNSPEC;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
@ -97,6 +100,9 @@ int opensock (const char *host, int port, const char *bind_to)
|
||||
return -1;
|
||||
}
|
||||
|
||||
log_message(LOG_INFO,
|
||||
"opensock: getaddrinfo returned for %s:%d", host, port);
|
||||
|
||||
ressave = res;
|
||||
do {
|
||||
sockfd =
|
||||
|
Loading…
Reference in New Issue
Block a user