Commit 59c865d1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing includes

parent 9be94826
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include <stdlib.h> /* exit() */ #include <stdlib.h> /* exit() */
#include <stdio.h> #include <stdio.h>
#include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
...@@ -229,7 +230,7 @@ static void rootprocess (int fd) ...@@ -229,7 +230,7 @@ static void rootprocess (int fd)
setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, &val, sizeof (val)); setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, &val, sizeof (val));
if (ss.ss_family == AF_INET6) if (ss.ss_family == AF_INET6)
setsockopt (sock, SOL_IPV6, IPV6_V6ONLY, &val, sizeof (val)); setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY, &val, sizeof (val));
if (bind (sock, (struct sockaddr *)&ss, len) == 0) if (bind (sock, (struct sockaddr *)&ss, len) == 0)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment