Searched defs:pcbs (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtcp_impl.h322 struct tcp_pcb *pcbs; member in union:tcp_listen_pcbs_t
345 #define TCP_REG(pcbs, npcb) do {\
347 for(tcp_tmp_pcb = *(pcbs); \
352 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOSED)); \
353 (npcb)->next = *(pcbs); \
355 *(pcbs) = (npcb); \
359 #define TCP_RMV(pcbs, npcb) do { \
360 LWIP_ASSERT("TCP_RMV: pcbs != NULL", *(pcbs) != NULL); \
361 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removing %p from %p\n", (npcb), *(pcbs))); \
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcp.h460 struct tcp_pcb *pcbs; member in union:tcp_listen_pcbs_t
480 #define TCP_REG(pcbs, npcb) do {\
482 for(tcp_tmp_pcb = *pcbs; \
488 npcb->next = *pcbs; \
490 *(pcbs) = npcb; \
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)); \
497 if(*pcbs
[all...]
/vbox/src/VBox/NetworkServices/NAT/
H A Dpxping.c109 * Protect lwIP and pmgr accesses to the list of pcbs.
114 * We need to find pcbs both from the guest side and from the host
122 struct ping_pcb *pcbs; member in struct:pxping
156 * Chaining for pxping::pcbs
889 pcb->next = pxping->pcbs;
890 pxping->pcbs = pcb;
901 for (p = &pxping->pcbs; *p != NULL; p = &(*p)->next) {
921 for (pcb = pxping->pcbs; pcb != NULL; pcb = pcb->next) {
1014 for (pcb = pxping->pcbs; pcb != NULL; pcb = pcb->next) {
1037 * New slot points to the list of pcbs t
[all...]

Completed in 51 milliseconds