Re: [Etherboot-developers] TLAN Driver
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: Michael B. <mb...@fe...> - 2003-07-08 14:08:20
|
> 1) Do I have a poll issue not a transmit problem. The dhcp server > replies and the driver polls and gets the packet length. If the poll > does not get the packet correctly will etherboot retransmit? I have > been assuming yes. Yes, as far as I am aware. > 3) Is there any way to parse/print out the packet that the poll function > is getting to ensure that it is properly received? There's a function in misc.c called hex_dump() that will produce a paged, nicely formatted hex dump of any given buffer; this may be handy. You need to change #define DEBUG_UTILS 0 to #define DEBUG_UTILS 1 in misc.c, otherwise it won't be compiled. HTH, Michael |