Commit c8ac57c4 authored by Davide Italiano's avatar Davide Italiano

Add missing headers to unbreak the build on FreeBSD/Clang.

parent 572c689d
...@@ -39,7 +39,9 @@ ...@@ -39,7 +39,9 @@
#include <netdb.h> #include <netdb.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/socket.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/in.h>
#endif #endif
namespace kj { namespace kj {
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
#else #else
#include <sys/socket.h> #include <sys/socket.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/un.h> #include <sys/un.h>
#endif #endif
......
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