diff options
-rw-r--r-- | tests/server/rtspd.c | 3 | ||||
-rw-r--r-- | tests/server/sockfilt.c | 3 | ||||
-rw-r--r-- | tests/server/sws.c | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/tests/server/rtspd.c b/tests/server/rtspd.c index 53ffeb6e1..8e61a43f3 100644 --- a/tests/server/rtspd.c +++ b/tests/server/rtspd.c @@ -33,6 +33,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_NETINET_IN6_H +#include <netinet/in6.h> +#endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif diff --git a/tests/server/sockfilt.c b/tests/server/sockfilt.c index f13ef208d..ceb04d8e8 100644 --- a/tests/server/sockfilt.c +++ b/tests/server/sockfilt.c @@ -89,6 +89,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_NETINET_IN6_H +#include <netinet/in6.h> +#endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif diff --git a/tests/server/sws.c b/tests/server/sws.c index 821497068..1d47375ad 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -34,6 +34,9 @@ #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_NETINET_IN6_H +#include <netinet/in6.h> +#endif #ifdef HAVE_ARPA_INET_H #include <arpa/inet.h> #endif |