struct io.DhcpHdr

struct DhcpHdr {
    // fields

    io.DhcpOpcode m_opcode;
    io.DhcpHardwareType m_hardwareType;
    uint8_t m_hardwareLength;
    uint8_t m_hopCount;
    uint32_t bigendian m_id;
    uint16_t bigendian m_secondsElapsed;
    uint16_t bigendian m_broadcastFlag;
    uint16_t bigendian m_reservedFlags;
    io.Address_ip4 m_clientAddress;
    io.Address_ip4 m_yourAddress;
    io.Address_ip4 m_serverAddress;
    io.Address_ip4 m_relayAddress;
    uint8_t m_hardwareAddress[];
    char m_serverName[];
    char m_bootFileName[];
    io.DhcpCookie bigendian m_magicCookie;
};