summaryrefslogtreecommitdiffstats
path: root/src/include/errno.h
Commit message (Collapse)AuthorAgeFilesLines
* Split error-message table portions of errno.h out to gpxe/errortab.hMichael Brown2006-12-201-11/+0Star
|
* Move strerror() prototype to string.h, where it belongsMichael Brown2006-12-201-2/+0Star
|
* Differentiate between ENOSPC and ENOMEMMichael Brown2006-12-201-13/+13
|
* Add sketch code to reassemble a DHCP packet from our internal "everythingMichael Brown2006-07-171-0/+1
| | | | | | | | | | is a DHCP option" data structures. We need this code in order to be able to return a DHCP packet to a PXE NBP which reflects options from our multiple sources (e.g. NVS and DHCP server). This is expensive, but necessary. Having paid this cost, we may as well try to use the same code to generate our DHCP request packets, since the process is similar.
* Add EOVERFLOW==ERANGEMichael Brown2006-05-191-4/+6
|
* Gave up on adding POSIX errno's as required, and just added (almost) allMichael Brown2006-04-281-12/+52
| | | | | | of them in one go. EBADIMG has been replaced by ENOEXEC, and EIMGRET by ECANCELED.
* Header rearrangement.Michael Brown2006-04-241-1/+2
| | | | | | | | | I want to get to the point where any header in include/ reflects a standard user-level header (e.g. a POSIX header), while everything that's specific to gPXE lives in include/gpxe/. Headers that reflect a Linux header (e.g. if_ether.h) should also be in include/gpxe/, with the same name as the Linux header and, preferably, the same names used for the definitions.
* First sketch of a new net device API.Michael Brown2006-04-191-0/+1
|
* Added ENOENT and EAFNOSUPPORTMichael Brown2006-04-191-0/+2
|
* More doxygen docsMichael Brown2005-05-181-5/+3Star
|
* Add EBADIMG, EIMGRET, ETIMEDOUT and EINVALMichael Brown2005-05-181-1/+6
|
* Added errno, strerror and the "%m" printf metacharacter. These will allowMichael Brown2005-05-171-0/+138
us to return proper PXE status codes, while simultaneously allowing for more consistent error reporting (complete with verbose error messages as a build-time option).