summaryrefslogtreecommitdiffstats
path: root/src/include/proto.h
Commit message (Collapse)AuthorAgeFilesLines
* Dead code removal.Michael Brown2007-07-141-33/+0Star
| | | | Kill off use of etherboot.h outside drivers/net.
* Move include/buffer.h to include/gpxe/buffer.hMichael Brown2007-01-111-1/+1
|
* Add "name" field to struct device to allow human-readable hardware deviceMichael Brown2007-01-101-5/+5
| | | | | | | | | | | names. Add "dev" pointer in struct net_device to tie network interfaces back to a hardware device. Force natural alignment of data types in __table() macros. This seems to prevent gcc from taking the unilateral decision to occasionally increase their alignment (which screws up the table packing).
* Added features that will be required for PXE UDP support.Michael Brown2006-08-021-1/+1
| | | | | | | Introduced struct sockaddr_tcpip, to simplify code that deals with both IPv4 and IPv6 addresses. Reorganised parts of tcpip.c and udp.c.
* Header rearrangement.Michael Brown2006-04-241-1/+1
| | | | | | | | | 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.
* Moved include/in.h to include/gpxe/in.h, so that it can be included byMichael Brown2006-03-231-1/+1
| | | | prototester.
* Protocols now load data into a buffer; they don't execute it.Michael Brown2005-05-091-7/+3Star
|
* Protocol structure can now specify the default port.Michael Brown2005-05-021-0/+2
|
* Protocols get passed a pointer to the filename portion as well as just theMichael Brown2005-04-301-0/+1
| | | | URL.
* Protocols also take a pointer to a sockaddr_in.Michael Brown2005-04-301-1/+2
|
* First versionMichael Brown2005-04-291-0/+33