summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2017-07-30 23:34:57 +0200
committerLinus Nordberg <linus@nordu.net>2017-07-30 23:34:57 +0200
commitf99c3a90010dbfbf74e409458692af95370159c8 (patch)
tree8d1b3d71047edce24ba4ce80865593e7d1120760
parente35b909b4eb109cc891446cb982a157dbffef27d (diff)
Make warning about failing IPV6_V6ONLY info level.
We might have a bug where bindtoaddr() tries to set V6ONLY on IPv4 sockets. Until that's been resolved, don't alarm users on debug level 'warning'.
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index d9c3839..876cb6c 100644
--- a/util.c
+++ b/util.c
@@ -155,7 +155,7 @@ int bindtoaddr(struct addrinfo *addrinfo, int family, int reuse, int v6only) {
#ifdef IPV6_V6ONLY
if (v6only)
if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1)
- debugerrno(errno, DBG_WARN, "Failed to set IPV6_V6ONLY");
+ debugerrno(errno, DBG_INFO, "Failed to set IPV6_V6ONLY");
#endif
if (!bind(s, res->ai_addr, res->ai_addrlen))
return s;