sock: in listen_sock(), add debug message when socket() call failed.

Signed-off-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Michael Adam 2013-11-08 11:39:23 +01:00
parent fa26ad4d56
commit 5392e9829c

View File

@ -195,8 +195,12 @@ int listen_sock (const char *addr, uint16_t port, vector_t listen_fds)
listenfd = socket (rp->ai_family, rp->ai_socktype,
rp->ai_protocol);
if (listenfd == -1)
if (listenfd == -1) {
log_message(LOG_ERR,
"failed to create socket: %s",
strerror(errno));
continue;
}
setsockopt (listenfd, SOL_SOCKET, SO_REUSEADDR, &on,
sizeof (on));