libnet  1.1
libnet.h
Go to the documentation of this file.
1 /*
2  * $Id: libnet.h.in,v 1.5 2004/01/17 07:51:19 mike Exp $
3  *
4  * libnet.h - Network routine library header file
5  *
6  * Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  */
31 
32 #ifndef __LIBNET_H
33 #define __LIBNET_H
34 
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61 
62 #include <stdio.h>
63 #include <string.h>
64 #include <unistd.h>
65 #include <fcntl.h>
66 #include <signal.h>
67 #include <stdlib.h>
68 
69 #if !defined(__WIN32__)
70 # include <sys/ioctl.h>
71 #endif /* __WIN32__ */
72 
73 #if defined(HAVE_SYS_SOCKIO_H) && !defined(SIOCGIFADDR)
74 # include <sys/sockio.h>
75 #endif
76 
77 #include <sys/stat.h>
78 #include <sys/types.h>
79 #include <ctype.h>
80 
81 #if !defined(__WIN32__)
82 # include <sys/socket.h>
83 # include <net/if.h>
84 #else /* __WIN32__ */
85 # if (__CYGWIN__)
86 # include <sys/socket.h>
87 # endif
88 # include <ws2tcpip.h>
89 # include <windows.h>
90 # include <winsock2.h>
91 #endif /* __WIN32__ */
92 
93 #if !(__linux__) && !(__WIN32__) && !(__APPLE__) && !(__CYGWIN__) && !(__GNU__)
94 #else /* __linux__ */
95 # if (HAVE_NET_ETHERNET_H)
96 # include <net/ethernet.h>
97 # endif /* HAVE_NET_ETHERNET_H */
98 #endif /* __linux__ */
99 
100 #if !defined(__WIN32__)
101 # include <arpa/inet.h>
102 # include <sys/time.h>
103 # include <netdb.h>
104 #endif /* __WIN32__ */
105 
106 #include <errno.h>
107 #include <stdarg.h>
108 
109 #define LIBNET_VERSION "1.2-rc3"
110 
111 #define LIBNET_LIL_ENDIAN 1
112 
113 #ifndef LIBNET_API
114 #define LIBNET_API
115 #endif
116 
117 #include "./libnet/libnet-types.h"
118 #include "./libnet/libnet-macros.h"
119 #include "./libnet/libnet-headers.h"
120 #include "./libnet/libnet-structures.h"
121 #include "./libnet/libnet-asn1.h"
123 
124 #ifdef __cplusplus
125 }
126 #endif
127 
128 #endif /* __LIBNET_H */
129 
130 /* EOF */