Searched refs:pcbs (Results 1 – 2 of 2) sorted by relevance
313 struct tcp_pcb *pcbs; member336 #define TCP_REG(pcbs, npcb) do {\ argument346 *(pcbs) = (npcb); \350 #define TCP_RMV(pcbs, npcb) do { \ argument354 *(pcbs) = (*pcbs)->next; \368 #define TCP_REG(pcbs, npcb) \ argument370 (npcb)->next = *pcbs; \371 *(pcbs) = (npcb); \375 #define TCP_RMV(pcbs, npcb) \ argument377 if(*(pcbs) == (npcb)) { \[all …]
113 struct tcp_pcb ** const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs,217 tcp_pcb_remove(&tcp_listen_pcbs.pcbs, pcb); in tcp_close_shutdown()569 TCP_REG(&tcp_listen_pcbs.pcbs, (struct tcp_pcb *)lpcb); in tcp_listen_with_backlog()1708 for(pcb = (struct tcp_pcb *)tcp_listen_pcbs.pcbs; pcb != NULL; pcb = pcb->next) { in tcp_debug_print_pcbs()
Completed in 8 milliseconds