Lines Matching defs:pu8RawDhcpObject
685 const uint8_t *pu8RawDhcpObject;
692 pu8RawDhcpObject = buf;
696 if (memcmp(pu8RawDhcpObject, rfc1533_cookie, 4) != 0)
699 /* note: pu8RawDhcpObject doesn't point to parameter buf */
700 pu8RawDhcpObject = dhcp_find_option(bp->bp_vend, RFC2132_MSG_TYPE);
701 Assert(pu8RawDhcpObject);
702 if (!pu8RawDhcpObject)
746 switch (*(pu8RawDhcpObject + 2))
769 /* note: pu8RawDhcpObject doesn't point to DHCP header, now it's expected it points
772 pu8RawDhcpObject = dhcp_find_option(&bp->bp_vend[0], RFC2132_REQ_ADDR);
773 if (!pu8RawDhcpObject)
778 req_ip.s_addr = *(uint32_t *)(pu8RawDhcpObject + 2);