summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Add aes.c and required headers from axtls treeMichael Brown2007-01-264-0/+969
* Enable the axtls code to at least build within gPXEMichael Brown2007-01-261-0/+62
* #if 0 out for nowMichael Brown2007-01-261-0/+3
* Yet more synonyms that people tend to use.Michael Brown2007-01-261-11/+17
* Help quick testing of building Linux code inside gPXEMichael Brown2007-01-251-0/+25
* Add Linux-compatible rol32/ror32 functions. Amazingly, gcc willMichael Brown2007-01-251-0/+19
* Use base "0" in strtoul for consistency with "mem="Michael Brown2007-01-241-1/+1
* "vga=" is specified in decimal, not hex.Michael Brown2007-01-231-1/+1
* Misread the definition of the type_of_loader field; it should include aMichael Brown2007-01-192-2/+8
* Added SIGKILL handlerMichael Brown2007-01-191-0/+15
* Zeroing out memory before using it can be so important.Michael Brown2007-01-191-0/+1
* Actually, it's probably safer *not* to leave child processes hangingMichael Brown2007-01-191-9/+8Star
* Note that the SIGCHLD handler could be re-entered.Michael Brown2007-01-191-1/+7
* Propagate return status code from last child to fail.Michael Brown2007-01-191-1/+1
* Handle structured error codes.Michael Brown2007-01-191-8/+63
* Introduce structured error codes.Michael Brown2007-01-191-157/+418
* Add POSIX prototypes for time functions, to allow external code to buildMichael Brown2007-01-192-0/+42
* Split random number generation out into core/random.c, and create theMichael Brown2007-01-193-22/+82
* vsprintf.h is gPXE-specific; move it to include/gpxeMichael Brown2007-01-193-5/+5
* Use stdio.h instead of vsprintf.hMichael Brown2007-01-1945-45/+45
* Finally move the prototypes for printf() and friends to stdio.hMichael Brown2007-01-192-34/+41
* 4.3BSD says that bcopy and bzero are defined in strings.h, not string.hMichael Brown2007-01-192-1/+11
* TypoMichael Brown2007-01-191-3/+3
* Add missing prerequisite includeMichael Brown2007-01-191-0/+2
* A working name resolution frameworkMichael Brown2007-01-187-45/+188
* When an async operation dies, orphan its children.Michael Brown2007-01-181-35/+74
* Have DHCP set the nameserver, rather than DNS read the DHCP nameserverMichael Brown2007-01-182-12/+18
* Use total free memory as advertised window. This seems to be sufficientMichael Brown2007-01-183-29/+31
* Move include/malloc.h to include/gpxe/malloc.h, since everything in thereMichael Brown2007-01-184-8/+19
* Include stdlib.h rather than malloc.hMichael Brown2007-01-186-9/+7Star
* console.h is no longer needed for debuggingMichael Brown2007-01-181-1/+0Star
* Allow truly arbitrary debug levels to be specified via DEBUG=Michael Brown2007-01-182-4/+4
* Declaring the CPU architecture in the middle of an assembly file isMichael Brown2007-01-181-1/+0Star
* Add DBGLVL_PROFILEMichael Brown2007-01-181-14/+28
* Remove the one-packet-per-poll-cycle limit; it seems to no longer beMichael Brown2007-01-181-24/+5Star
* Increase window size to 64kB. Line rate downloads on a 100Mbps link,Michael Brown2007-01-181-9/+30
* Accelerate memcpy() by around 32% on large, dword-aligned copies.Michael Brown2007-01-182-0/+70
* Allow buffers to be pre-expanded on demand.Michael Brown2007-01-182-5/+22
* Presize the download buffer when we see the Content-Length header;Michael Brown2007-01-181-0/+12
* Reorder functions to more closely reflect the flow of controlMichael Brown2007-01-182-103/+97Star
* Don't always zero memory in malloc(). This saves around 2us on aMichael Brown2007-01-182-6/+23
* Switch from calloc() to malloc()+memset() to match the practices usedMichael Brown2007-01-182-2/+6
* Respect the RX quota. This improves poll time by about 0.7us when theMichael Brown2007-01-181-0/+1
* HTTP/DNS now working fully asynchronously. HTTP/IP addresses and anyMichael Brown2007-01-186-164/+72Star
* Replacement for fetch() which operates asynchronously and identifiesMichael Brown2007-01-182-0/+231
* Use struct sockaddr rather than struct sockaddr_tcpipMichael Brown2007-01-182-14/+23
* Added async_uninit() to simplify failure paths.Michael Brown2007-01-182-0/+37
* Add utility function to parse port from URIMichael Brown2007-01-182-0/+12
* Ensure that struct sockaddr is long enough...Michael Brown2007-01-182-4/+12
* ObsoleteMichael Brown2007-01-183-1318/+0Star