]> sjero.net Git - iperf/blob - include/headers.h
TCP Congestion Control Module via options
[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 // All addresses use struct sockaddr_storage, for compatibility with both v4/v6
130 // The maximum report length is the maximum host name length for getnameinfo(3).
131 #define REPORT_ADDRLEN (NI_MAXHOST + 1)
132
133 // Rationalize stdint definitions and sizeof, thanks to ac_create_stdint_h.m4
134 // from the gnu archive
135
136 #include <iperf-int.h>
137 typedef uintmax_t max_size_t;
138
139 /* in case the OS doesn't have these, we provide our own implementations */
140 #include "gettimeofday.h"
141 #include "inet_aton.h"
142 #include "snprintf.h"
143
144 #ifndef SHUT_RD
145     #define SHUT_RD   0
146     #define SHUT_WR   1
147     #define SHUT_RDWR 2
148 #endif // SHUT_RD
149
150 /* Plug-able TCP congestion control algorithm */
151 #ifndef TCP_CONGESTION
152 #define TCP_CONGESTION  13      /* include/linux/tcp.h */
153 #endif
154
155 /* DCCP-specific definitions */
156 #include <linux/dccp.h>
157 #ifndef SOCK_DCCP
158 #define SOCK_DCCP       6       /* include/linux/net.h    */
159 #endif
160 #ifndef IPPROTO_DCCP
161 #define IPPROTO_DCCP    33      /* include/linux/in.h     */
162 #endif
163 #ifndef SOL_DCCP
164 #define SOL_DCCP        269     /* include/linux/socket.h */
165 #endif
166 #endif /* HEADERS_H */