diff options
-rw-r--r-- | lib/sendf.c | 4 | ||||
-rw-r--r-- | lib/setopt.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index a1cb8e478..027f97c47 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -22,6 +22,10 @@ #include "curl_setup.h" +#ifdef HAVE_NETINET_IN_H +#include <netinet/in.h> +#endif + #ifdef HAVE_LINUX_TCP_H #include <linux/tcp.h> #endif diff --git a/lib/setopt.c b/lib/setopt.c index 944d17347..bd5fb54d9 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -26,6 +26,10 @@ #include <limits.h> #endif +#ifdef HAVE_NETINET_IN_H +#include <netinet/in.h> +#endif + #ifdef HAVE_LINUX_TCP_H #include <linux/tcp.h> #endif |