Changeset 10979 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 30, 2008 12:35:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/testcase/tstIntNet-1.cpp
r10978 r10979 41 41 42 42 #include "../Pcap.h" 43 44 /*******************************************************************************45 * Structures and Typedefs *46 *******************************************************************************/47 #pragma pack(1)48 49 50 struct MyDhcpMsg51 {52 uint8_t Op;53 uint8_t HType;54 uint8_t HLen;55 uint8_t Hops;56 uint32_t XID;57 uint16_t Secs;58 uint16_t Flags;59 uint32_t CIAddr;60 uint32_t YIAddr;61 uint32_t SIAddr;62 uint32_t GIAddr;63 uint8_t CHAddr[16];64 uint8_t SName[64];65 uint8_t File[128];66 uint8_t abMagic[4];67 uint8_t DhcpOpt;68 uint8_t DhcpLen; /* 1 */69 uint8_t DhcpReq;70 uint8_t abOptions[57];71 };72 73 #pragma pack(0)74 43 75 44
Note:
See TracChangeset
for help on using the changeset viewer.