]> sjero.net Git - iperf/blob - include/headers.h
6bf6da8462081b80b6b7c4b716619a2a39372b8b
[iperf] / include / headers.h
1 /*--------------------------------------------------------------- 
2  * Copyright (c) 1999,2000,2001,2002,2003                              
3  * The Board of Trustees of the University of Illinois            
4  * All Rights Reserved.                                           
5  *--------------------------------------------------------------- 
6  * Permission is hereby granted, free of charge, to any person    
7  * obtaining a copy of this software (Iperf) and associated       
8  * documentation files (the "Software"), to deal in the Software  
9  * without restriction, including without limitation the          
10  * rights to use, copy, modify, merge, publish, distribute,        
11  * sublicense, and/or sell copies of the Software, and to permit     
12  * persons to whom the Software is furnished to do
13  * so, subject to the following conditions: 
14  *
15  *     
16  * Redistributions of source code must retain the above 
17  * copyright notice, this list of conditions and 
18  * the following disclaimers. 
19  *
20  *     
21  * Redistributions in binary form must reproduce the above 
22  * copyright notice, this list of conditions and the following 
23  * disclaimers in the documentation and/or other materials 
24  * provided with the distribution. 
25  * 
26  *     
27  * Neither the names of the University of Illinois, NCSA, 
28  * nor the names of its contributors may be used to endorse 
29  * or promote products derived from this Software without
30  * specific prior written permission. 
31  * 
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
33  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
34  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
35  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
36  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
37  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
38  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
40  * ________________________________________________________________
41  * National Laboratory for Applied Network Research 
42  * National Center for Supercomputing Applications 
43  * University of Illinois at Urbana-Champaign 
44  * http://www.ncsa.uiuc.edu
45  * ________________________________________________________________ 
46  *
47  * headers.h
48  * by Mark Gates <mgates@nlanr.net>
49  * -------------------------------------------------------------------
50  * All system headers required by iperf.
51  * This could be processed to form a single precompiled header,
52  * to avoid overhead of compiling it multiple times.
53  * This also verifies a few things are defined, for portability.
54  * ------------------------------------------------------------------- */
55
56 #ifndef HEADERS_H
57 #define HEADERS_H
58
59
60 #ifdef HAVE_CONFIG_H
61     #include "config.h"
62
63 /* OSF1 (at least the system I use) needs extern C
64  * around the <netdb.h> and <arpa/inet.h> files. */
65     #if defined( SPECIAL_OSF1_EXTERN ) && defined( __cplusplus )
66         #define SPECIAL_OSF1_EXTERN_C_START extern "C" {
67         #define SPECIAL_OSF1_EXTERN_C_STOP  }
68     #else
69         #define SPECIAL_OSF1_EXTERN_C_START
70         #define SPECIAL_OSF1_EXTERN_C_STOP
71     #endif
72 #endif /* HAVE_CONFIG_H */
73
74 /* turn off assert debugging */
75 #define NDEBUG
76
77 /* standard C headers */
78 #include <stdlib.h>
79 #include <stdio.h>
80 #include <assert.h>
81 #include <ctype.h>
82 #include <errno.h>
83 #include <string.h>
84 #include <time.h>
85 #include <math.h>
86
87 /* required on AIX for FD_SET (requires bzero).
88  * often this is the same as <string.h> */
89     #ifdef HAVE_STRINGS_H
90         #include <strings.h>
91     #endif // HAVE_STRINGS_H
92
93 /* unix headers */
94     #include <sys/types.h>
95     #include <sys/socket.h>
96     #include <sys/time.h>
97     #include <signal.h>
98     #include <unistd.h>
99
100 /** Added for daemonizing the process */
101     #include <syslog.h>
102
103 SPECIAL_OSF1_EXTERN_C_START
104     #include <netdb.h>
105 SPECIAL_OSF1_EXTERN_C_STOP
106     #include <netinet/in.h>
107     #include <netinet/tcp.h>
108
109 SPECIAL_OSF1_EXTERN_C_START
110     #include <arpa/inet.h>   /* netinet/in.h must be before this on SunOS */
111 SPECIAL_OSF1_EXTERN_C_STOP
112
113     #ifdef HAVE_POSIX_THREAD
114         #include <pthread.h>
115     #endif // HAVE_POSIX_THREAD
116
117 /* used in Win32 for error checking,
118  * rather than checking rc < 0 as unix usually does */
119     #define SOCKET_ERROR   -1
120     #define INVALID_SOCKET -1
121
122 #ifndef INET6_ADDRSTRLEN
123     #define INET6_ADDRSTRLEN 40
124 #endif
125 #ifndef INET_ADDRSTRLEN
126     #define INET_ADDRSTRLEN 15
127 #endif
128
129 //#ifdef __cplusplus
130     #ifdef HAVE_IPV6
131         #define REPORT_ADDRLEN (INET6_ADDRSTRLEN + 1)
132 typedef struct sockaddr_storage iperf_sockaddr;
133     #else
134         #define REPORT_ADDRLEN (INET_ADDRSTRLEN + 1)
135 typedef struct sockaddr_in iperf_sockaddr;
136     #endif
137 //#endif
138
139 // Rationalize stdint definitions and sizeof, thanks to ac_create_stdint_h.m4
140 // from the gnu archive
141
142 #include <iperf-int.h>
143 typedef uintmax_t max_size_t;
144
145 /* in case the OS doesn't have these, we provide our own implementations */
146 #include "gettimeofday.h"
147 #include "inet_aton.h"
148 #include "snprintf.h"
149
150 #ifndef SHUT_RD
151     #define SHUT_RD   0
152     #define SHUT_WR   1
153     #define SHUT_RDWR 2
154 #endif // SHUT_RD
155
156 #endif /* HEADERS_H */
157
158
159
160
161
162