00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef __LIBNET_H
00033 #define __LIBNET_H
00034
00035 #include <stdio.h>
00036 #include <string.h>
00037 #include <unistd.h>
00038 #include <fcntl.h>
00039 #include <signal.h>
00040 #include <stdlib.h>
00041 #if defined(HAVE_SYS_SOCKIO_H) && !defined(SIOCGIFADDR)
00042 #include <sys/sockio.h>
00043 #endif
00044 #include <sys/stat.h>
00045 #include <sys/types.h>
00046 #include <ctype.h>
00047 #if(WIN32)
00048 #include "LibnetNT.h"
00049 #else
00050 #include <sys/ioctl.h>
00051 #include <sys/socket.h>
00052 #include <netinet/in.h>
00053 #include <netinet/in_systm.h>
00054 #include <netinet/ip.h>
00055 #include <net/if.h>
00056 #if !(__linux__)
00057 #include <netinet/ip_var.h>
00058 #else
00059 #if (HAVE_NET_ETHERNET_H)
00060 #include <net/ethernet.h>
00061 #endif
00062 #endif
00063 #include <netinet/tcp.h>
00064 #include <netinet/udp.h>
00065 #include <netinet/ip_icmp.h>
00066 #if (__linux__) && !(__GLIBC__)
00067
00068
00069
00070 #include <linux/igmp.h>
00071 #else
00072 #include <netinet/igmp.h>
00073 #endif
00074 #include <arpa/inet.h>
00075 #include <sys/time.h>
00076 #include <netdb.h>
00077 #endif
00078
00079
00080 #include <errno.h>
00081 #include <assert.h>
00082
00083 #include "./libnet/libnet-headers.h"
00084 #include "./libnet/libnet-structures.h"
00085 #include "./libnet/libnet-macros.h"
00086 #include "./libnet/libnet-asn1.h"
00087 #include "./libnet/libnet-functions.h"
00088 #include "./libnet/libnet-ospf.h"
00089
00090 #define LIBNET_VERSION "1.0.1a"
00091
00092 #if (!LIBNET_LIL_ENDIAN && !LIBNET_BIG_ENDIAN)
00093 #error "byte order has not been specified, you'll
00094 need to #define either LIBNET_LIL_ENDIAN or LIBNET_BIG_ENDIAN. See the
00095 documentation regarding the libnet-config script."
00096 #endif
00097
00098 #endif /* __LIBNET_H */
00099
00100 /* EOF */