/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.0.0
src/include/etherboot.h
44 строки
830 B
Michael Brown
[legal] Add a selection of FILE_LICENCE declarations
18 май 2009, 11:33
18 май 2009, 11:33
c44a193
Код
Авторство
О чём код?
#ifndef ETHERBOOT_H #define ETHERBOOT_H /* * Standard includes that we always want * */ FILE_LICENCE ( GPL2_OR_LATER ); #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <strings.h> #include <console.h> #include <gpxe/timer.h> #include <gpxe/if_arp.h> #include <gpxe/if_ether.h> typedef unsigned long Address; /* * IMPORTANT!!!!!!!!!!!!!! * * Everything below this point is cruft left over from older versions * of Etherboot. Do not add *anything* below this point. Things are * gradually being moved to individual header files. * */ /* Link configuration time in tenths of a second */ #ifndef VALID_LINK_TIMEOUT #define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */ #endif /* * Local variables: * c-basic-offset: 8 * End: */ #endif /* ETHERBOOT_H */