nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #ifndef HEADERS_SLIM_H |
2 | #define HEADERS_SLIM_H |
||
3 | |||
4 | /* ------------------------------------------------------------------- |
||
5 | * headers_slim.h |
||
6 | * by Mark Gates <mgates@nlanr.net> |
||
7 | * Copyright 1999, Board of Trustees of the University of Illinois. |
||
8 | * $Id: headers_slim.h,v 1.1.1.1 2001/12/12 23:37:48 jdugan Exp $ |
||
9 | * ------------------------------------------------------------------- |
||
10 | * headers |
||
11 | * |
||
12 | * Most system headers required by iperf. |
||
13 | * This is a subset of lib/headers.h, to be used only while running |
||
14 | * configure. It excludes things conditional on having _already_ |
||
15 | * run configure, and Win32 stuff. |
||
16 | * ------------------------------------------------------------------- */ |
||
17 | |||
18 | /* standard C headers */ |
||
19 | #include <stdlib.h> |
||
20 | #include <stdio.h> |
||
21 | #include <assert.h> |
||
22 | #include <ctype.h> |
||
23 | #include <errno.h> |
||
24 | #include <string.h> |
||
25 | #include <time.h> |
||
26 | #include <math.h> |
||
27 | |||
28 | /* unix headers */ |
||
29 | #include <sys/types.h> |
||
30 | #include <sys/socket.h> |
||
31 | #include <sys/time.h> |
||
32 | #include <signal.h> |
||
33 | #include <unistd.h> |
||
34 | #include <netdb.h> |
||
35 | #include <netinet/in.h> |
||
36 | #include <netinet/tcp.h> |
||
37 | #include <arpa/inet.h> /* netinet/in.h must be before this on SunOS */ |
||
38 | |||
39 | #endif /* HEADERS_SLIM_H */ |