| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix a couple of broken assertions, and align the buffer correctly. | Michael Brown | 2006-04-28 | 1 | -2/+2 | |
| | | ||||||
| * | Actually, it's probably a good idea to have packet buffers avoid 4kB | Michael Brown | 2006-04-25 | 1 | -0/+11 | |
| | | | | | crossings. | |||||
| * | Updated memory allocator to improve support for unaligned or partially | Michael Brown | 2006-04-25 | 1 | -36/+0![]() | |
| | | | | | | | | | | aligned blocks. Moved header to include/malloc.h, since we now also provide the POSIX-like malloc()/free() pair. Not yet tested. | |||||
| * | Added pkb_reserve(). | Michael Brown | 2006-04-24 | 1 | -0/+14 | |
| | | ||||||
| * | gcc is rather over-aggressive about optimising out static data structures | Michael Brown | 2006-04-24 | 1 | -2/+2 | |
| | | | | | even when __atribute__ (( unused )) is correctly set... | |||||
| * | Header rearrangement. | Michael Brown | 2006-04-24 | 11 | -25/+971 | |
| | | | | | | | | | | 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. | |||||
| * | Network API now allows for multiple network devices (although the | Michael Brown | 2006-04-24 | 1 | -0/+28 | |
| | | | | | | | | | | | | | | implementation allows for only one, and does so without compromising on the efficiency of static allocation). Link-layer protocols are cleanly separated from the device drivers. Network-layer protocols are cleanly separated from individual network devices. Link-layer and network-layer protocols are cleanly separated from each other. | |||||
| * | Network API now allows for multiple network devices (although the | Michael Brown | 2006-04-24 | 3 | -173/+272 | |
| | | | | | | | | | | | | | | implementation allows for only one, and does so without compromising on the efficiency of static allocation). Link-layer protocols are cleanly separated from the device drivers. Network-layer protocols are cleanly separated from individual network devices. Link-layer and network-layer protocols are cleanly separated from each other. | |||||
| * | Don't bother poisoning lists; it costs code size. | Michael Brown | 2006-04-24 | 1 | -13/+3![]() | |
| | | ||||||
| * | First draft of a dynamic memory allocator | Michael Brown | 2006-04-24 | 1 | -0/+36 | |
| | | ||||||
| * | First sketch of a new net device API. | Michael Brown | 2006-04-19 | 2 | -25/+32 | |
| | | ||||||
| * | Remove the concept of the media-independent link-layer header and replace | Michael Brown | 2006-04-19 | 4 | -100/+59![]() | |
| | | | | | | it with metadata in the pkb structure. This is required since UNDI will want to be able to parse the link-layer header without destroying it. | |||||
| * | Added the concept of a network interface (a network-layer concept) as | Michael Brown | 2006-04-19 | 1 | -23/+104 | |
| | | | | | separate from a network device (a link-layer concept). | |||||
| * | Typo | Michael Brown | 2006-04-19 | 1 | -1/+1 | |
| | | ||||||
| * | First version, based on include/linux/list.h, stripped down to just | Michael Brown | 2006-04-19 | 1 | -0/+155 | |
| | | | | | | | | those functions we are likely to need. Still need to come up with a way of getting the linker to create static lists using this linking mechanism. | |||||
| * | Update now that if_ether.h has moved. | Michael Brown | 2006-04-19 | 1 | -5/+1![]() | |
| | | ||||||
| * | Added pkb_unput() and pkb_len(). | Michael Brown | 2006-04-19 | 1 | -0/+21 | |
| | | ||||||
| * | Make flags more efficient. | Michael Brown | 2006-04-19 | 1 | -8/+15 | |
| | | | | | Add 'raw' net_addr facility (needed for ARP). | |||||
| * | Moved if_ether.h and if_arp.h to include/gpxe, for consistency with Linux | Michael Brown | 2006-04-19 | 2 | -0/+131 | |
| | | | | | | | | | kernel. Removed obsolete struct arprequest from if_arp.h and put it in nic.c so that nic.c will still compile. ARP will very shortly be handled by net/arp.c instead. | |||||
| * | Add missing prototype | Michael Brown | 2006-04-19 | 1 | -0/+3 | |
| | | ||||||
| * | First version | Michael Brown | 2006-04-19 | 1 | -0/+20 | |
| | | ||||||
| * | First sketch | Michael Brown | 2006-04-18 | 1 | -0/+126 | |
| | | ||||||
| * | First version | Michael Brown | 2006-04-18 | 1 | -0/+56 | |
| | | ||||||
| * | First version, based on the concepts in linux/skbuff.h | Michael Brown | 2006-04-18 | 1 | -0/+80 | |
| | | ||||||
| * | First draft of iSCSI protocol support. Is capable of retrieving disk | Michael Brown | 2006-04-05 | 2 | -0/+494 | |
| | | | | | blocks. | |||||
| * | Added tcp_buffer, to give applications a zero-cost place to build data to | Michael Brown | 2006-04-05 | 1 | -0/+2 | |
| | | | | | be transmitted. | |||||
| * | Added set_netmask() and set_gateway() | Michael Brown | 2006-04-05 | 1 | -0/+2 | |
| | | ||||||
| * | Split non-TCP portions of the stack out into ip.[ch]. | Michael Brown | 2006-03-24 | 2 | -2/+18 | |
| | | | | | Added set_ipaddr(). | |||||
| * | Moved "hello world" protocol implementation out of prototester.c and into | Michael Brown | 2006-03-23 | 1 | -0/+46 | |
| | | | | | the first standalong uIP-based protocol module. | |||||
| * | Added prototype for inet_ntoa, even though we don't have the function | Michael Brown | 2006-03-23 | 1 | -0/+1 | |
| | | | | | | | yet, in order to allow prototester.c to compile. It might be worth changing all the uses of "%@" in printf to use "%s" and inet_ntoa instead, in order to improve the portability of our code. | |||||
| * | Moved uIP wrapper out of prototester.c and into proto/tcp.c. | Michael Brown | 2006-03-23 | 1 | -0/+102 | |
| | | ||||||
| * | Moved include/in.h to include/gpxe/in.h, so that it can be included by | Michael Brown | 2006-03-23 | 1 | -0/+33 | |
| prototester. | ||||||

