From: Thomas Pornin Date: Sat, 1 Apr 2017 18:17:09 +0000 (+0200) Subject: Small patch to allow compilation on old systems that predate the IPV6_V6ONLY option... X-Git-Tag: v0.4~1 X-Git-Url: https://www.bearssl.org/gitweb//home/git/?p=BearSSL;a=commitdiff_plain;h=927ecfc68d92d39e308eb5f1114db8de397fdb18 Small patch to allow compilation on old systems that predate the IPV6_V6ONLY option (Debian 2.2 "potato"). --- diff --git a/tools/server.c b/tools/server.c index 363028f..cb04711 100644 --- a/tools/server.c +++ b/tools/server.c @@ -119,9 +119,16 @@ host_bind(const char *host, const char *port, int verbose) opt = 1; setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *)&opt, sizeof opt); +#ifdef IPV6_V6ONLY + /* + * We want to make sure that the server socket works for + * both IPv4 and IPv6. But IPV6_V6ONLY is not defined on + * some very old systems. + */ opt = 0; setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&opt, sizeof opt); +#endif if (bind(fd, sa, sa_len) < 0) { if (verbose) { perror("bind()");