Home
last modified time | relevance | path

Searched refs:p_out (Results 1 – 2 of 2) sorted by relevance

/lk-master/external/lib/lwip/core/
A Ddhcp.c670 LWIP_ASSERT("pbuf p_out wasn't freed", dhcp->p_out == NULL); in dhcp_start()
748 udp_sendto_if(pcb, dhcp.p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif); in dhcp_inform()
1662 LWIP_ASSERT("dhcp_create_msg: dhcp->p_out == NULL", dhcp->p_out == NULL); in dhcp_create_msg()
1664 dhcp->p_out = pbuf_alloc(PBUF_TRANSPORT, sizeof(struct dhcp_msg), PBUF_RAM); in dhcp_create_msg()
1665 if (dhcp->p_out == NULL) { in dhcp_create_msg()
1671 (dhcp->p_out->len >= sizeof(struct dhcp_msg))); in dhcp_create_msg()
1685 dhcp->msg_out = (struct dhcp_msg *)dhcp->p_out->payload; in dhcp_create_msg()
1738 LWIP_ASSERT("dhcp_delete_msg: dhcp->p_out != NULL", dhcp->p_out != NULL); in dhcp_delete_msg()
1740 if (dhcp->p_out != NULL) { in dhcp_delete_msg()
1741 pbuf_free(dhcp->p_out); in dhcp_delete_msg()
[all …]
/lk-master/external/lib/lwip/include/lwip/
A Ddhcp.h46 struct pbuf *p_out; /* pbuf of outcoming msg */ member

Completed in 6 milliseconds