Searched refs:options_out_len (Results 1 – 2 of 2) sorted by relevance
1271 dhcp->msg_out->options[dhcp->options_out_len++] = option_type; in dhcp_option()1272 dhcp->msg_out->options[dhcp->options_out_len++] = option_len; in dhcp_option()1282 dhcp->msg_out->options[dhcp->options_out_len++] = value; in dhcp_option_byte()1289 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0xff00U) >> 8); in dhcp_option_short()1290 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t) (value & 0x00ffU); in dhcp_option_short()1314 size_t available = DHCP_OPTIONS_LEN - dhcp->options_out_len - 3; in dhcp_option_hostname()1718 dhcp->options_out_len = 0; in dhcp_create_msg()1761 dhcp->msg_out->options[dhcp->options_out_len++] = DHCP_OPTION_END; in dhcp_option_trailer()1763 while (((dhcp->options_out_len < DHCP_MIN_OPTIONS_LEN) || (dhcp->options_out_len & 3)) && in dhcp_option_trailer()1764 (dhcp->options_out_len < DHCP_OPTIONS_LEN)) { in dhcp_option_trailer()[all …]
48 u16_t options_out_len; /* outgoing msg options length */ member
Completed in 6 milliseconds