[contrib] Allow Network Protocol header to display in rom-o-matic
[gpxe.git] / src / include / etherboot.h
blobad44e8a9b970950d7d15b9602184f4358dbff3d4
1 #ifndef ETHERBOOT_H
2 #define ETHERBOOT_H
4 /*
5 * Standard includes that we always want
7 */
9 FILE_LICENCE ( GPL2_OR_LATER );
11 #include <stddef.h>
12 #include <stdint.h>
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <unistd.h>
16 #include <strings.h>
17 #include <console.h>
18 #include <gpxe/timer.h>
19 #include <gpxe/if_arp.h>
20 #include <gpxe/if_ether.h>
22 typedef unsigned long Address;
25 * IMPORTANT!!!!!!!!!!!!!!
27 * Everything below this point is cruft left over from older versions
28 * of Etherboot. Do not add *anything* below this point. Things are
29 * gradually being moved to individual header files.
33 /* Link configuration time in tenths of a second */
34 #ifndef VALID_LINK_TIMEOUT
35 #define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */
36 #endif
39 * Local variables:
40 * c-basic-offset: 8
41 * End:
44 #endif /* ETHERBOOT_H */