summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2012-03-05 13:24:35 -0800
committerSam Roberts <vieuxtech@gmail.com>2012-03-05 13:32:22 -0800
commit508502b8eef27ca194e57f6144d9ad43809154a9 (patch)
treece193827acd051d405ff59606ed35755f44c2b1f
parenta14ef980b06a034969124c4e35c8723ab988ad10 (diff)
downloadlibnet-508502b8eef27ca194e57f6144d9ad43809154a9.tar.gz
Don't depend on netinet/ip.h.
It might define ip_len as a macro on AIX, causing compile problems for libnet-headers.h (reported by Alo Bar-Lev <alon.barlev@gmail.com>). In general, libnet should not use system's packet structures, they vary too much across platforms.
-rw-r--r--libnet/include/libnet.h.in1
1 files changed, 0 insertions, 1 deletions
diff --git a/libnet/include/libnet.h.in b/libnet/include/libnet.h.in
index 0dee481..8992e6f 100644
--- a/libnet/include/libnet.h.in
+++ b/libnet/include/libnet.h.in
@@ -80,7 +80,6 @@ extern "C" {
#if !defined(__WIN32__)
# include <sys/socket.h>
-# include <netinet/in.h>
# include <net/if.h>
#else /* __WIN32__ */
# if (__CYGWIN__)