diff options
author | Linus Nordberg <linus@nordu.net> | 2017-07-30 22:09:55 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-07-30 22:12:19 +0200 |
commit | d9e2de1a0d2f60cdf153d7efc5e6563a4764573b (patch) | |
tree | f673d5c0d4dafd9dafb60995693060327ec12a57 /util.c | |
parent | c329d323515fa2ad25b10cc2fc294f33635ed639 (diff) |
Check return value from setsockopt().
coverity: 1449508, 1449522.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -150,10 +150,12 @@ int bindtoaddr(struct addrinfo *addrinfo, int family, int reuse, int v6only) { disable_DF_bit(s,res); if (reuse) - setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); + if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1) + debugerrno(errno, DBG_WARN, "Failed to set SO_REUSEADDR"); #ifdef IPV6_V6ONLY if (v6only) - setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)); + if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1) + debugerrno(errno, DBG_WARN, "Failed to set IPV6_V6ONLY"); #endif if (!bind(s, res->ai_addr, res->ai_addrlen)) return s; |