summaryrefslogtreecommitdiffstats
path: root/src/proto/nmb.c
Commit message (Collapse)AuthorAgeFilesLines
* A working DNS resolver (not yet tied in to anything)Michael Brown2007-01-151-1/+5
|
* We don't actually have a stdio.h header file. Our printf() functions areMichael Brown2006-09-271-1/+0Star
| | | | | | | | defined in vsprintf.h. (This may change, since vsprintf.h is a non-standard name, but for now it's the one to use.) There should be no need to include vsprintf.h just for DBG() statements, since include/compiler.h forces it in for a debug build anyway.
* added stdio.h to includes for DBG compilationMarty Connor2006-09-271-0/+1
|
* gcc is rather over-aggressive about optimising out static data structuresMichael Brown2006-04-241-1/+1
| | | | even when __atribute__ (( unused )) is correctly set...
* 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.
* Fixes for gcc >= 3.2 from Georg BaumMichael Brown2005-05-241-2/+5
|
* NMB packets are so similar to DNS packets; we may as well add NMB as aMichael Brown2005-05-011-0/+103
name resolution method.