Searched defs:TCP_RMV (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
356 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \
359 #define TCP_RMV(pcbs, npcb) do { \ macro
360 LWIP_ASSERT("TCP_RMV: pcbs != NULL", *(pcbs) != NULL); \
361 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removing %p from %p\n", (npcb), *(pcbs))); \
371 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \
372 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removed %p from %p\n", (npcb), *(pcbs))); \
384 #define TCP_RMV(pcbs, npcb) \ macro
412 TCP_RMV(&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
491 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \
494 #define TCP_RMV(pcbs, npcb) do { \
495 LWIP_ASSERT("TCP_RMV: pcbs != NULL", *pcbs != NULL); \
496 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removing %p from %p\n", npcb, *pcbs)); \
506 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \
507 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removed %p from %p\n", npcb, *pcbs)); \
516 #define TCP_RMV(pcbs, npcb) do { \ macro

Completed in 35 milliseconds