You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etherboot.h 809B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef ETHERBOOT_H
  2. #define ETHERBOOT_H
  3. /*
  4. * Standard includes that we always want
  5. *
  6. */
  7. FILE_LICENCE ( GPL2_OR_LATER );
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. #include <stdlib.h>
  11. #include <stdio.h>
  12. #include <unistd.h>
  13. #include <strings.h>
  14. #include <ipxe/timer.h>
  15. #include <ipxe/if_arp.h>
  16. #include <ipxe/if_ether.h>
  17. typedef unsigned long Address;
  18. /*
  19. * IMPORTANT!!!!!!!!!!!!!!
  20. *
  21. * Everything below this point is cruft left over from older versions
  22. * of Etherboot. Do not add *anything* below this point. Things are
  23. * gradually being moved to individual header files.
  24. *
  25. */
  26. /* Link configuration time in tenths of a second */
  27. #ifndef VALID_LINK_TIMEOUT
  28. #define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */
  29. #endif
  30. /*
  31. * Local variables:
  32. * c-basic-offset: 8
  33. * End:
  34. */
  35. #endif /* ETHERBOOT_H */