Searched defs:TCP_REG (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtcp_impl.h339 /* Define two macros, TCP_REG and TCP_RMV that registers a TCP PCB
345 #define TCP_REG(pcbs, npcb) do {\ macro
346 LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", (npcb), (npcb)->local_port)); \
350 LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \
352 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOSED)); \
354 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \
377 #define TCP_REG(pcbs, npcb) \ macro
406 TCP_REG(&tcp_active_pcbs, npcb); \
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcp.h477 /* Define two macros, TCP_REG and TCP_RMV that registers a TCP PCB
480 #define TCP_REG(pcbs, npcb) do {\
481 LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", npcb, npcb->local_port)); \
485 LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != npcb); \
487 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", npcb->state != CLOSED); \
489 LWIP_ASSERT("TCP_REG: npcb->next != npcb", npcb->next != npcb); \
511 #define TCP_REG(pcbs, npcb) do { \ macro

Completed in 41 milliseconds