Home
last modified time | relevance | path

Searched refs:msg_out (Results 1 – 3 of 3) sorted by relevance

/lib/liblwip/src/core/
Ddhcp.c1271 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()
1297 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0xff000000UL) >> 24); in dhcp_option_long()
1298 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x00ff0000UL) >> 16); in dhcp_option_long()
1299 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x0000ff00UL) >> 8); in dhcp_option_long()
1300 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x000000ffUL)); in dhcp_option_long()
1663 LWIP_ASSERT("dhcp_create_msg: dhcp->msg_out == NULL", dhcp->msg_out == NULL); in dhcp_create_msg()
[all …]
/lib/liblwip/src/include/lwip/
Ddhcp.h47 struct dhcp_msg *msg_out; /* outgoing msg */ member
/lib/liblwip/
DCHANGELOG125 * msg_in.c, msg_out.c: fixed bug #35536 SNMP: error too big response is malformed
1742 * inet.c, autoip.c, msg_in.c, msg_out.c, init.c: Move some build time checkings