diff options
author | louiz’ <[email protected]> | 2016-12-07 23:58:26 +0100 |
---|---|---|
committer | louiz’ <[email protected]> | 2016-12-08 00:09:29 +0100 |
commit | 783d77260dab0ea81d6b36003024abf4ebdd2fdf (patch) | |
tree | d696363a0f39172855c2de315197f9b191fe311a /src/lib/utils/http_util | |
parent | 8faed8bf9a1e6c059402027800aa8b2e78aabbb9 (diff) |
Add missing netinet includes for sockaddr_in
Diffstat (limited to 'src/lib/utils/http_util')
-rw-r--r-- | src/lib/utils/http_util/http_util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/utils/http_util/http_util.cpp b/src/lib/utils/http_util/http_util.cpp index f5e5042e8..c699b786f 100644 --- a/src/lib/utils/http_util/http_util.cpp +++ b/src/lib/utils/http_util/http_util.cpp @@ -26,6 +26,7 @@ #include <sys/socket.h> #include <netdb.h> #include <unistd.h> + #include <netinet/in.h> #else //#warning "No network support enabled in http_util" #endif |