Searched refs:pcbs (Results 1 – 3 of 3) sorted by relevance
/external/syslinux/core/lwip/src/include/lwip/ |
D | tcp_impl.h | 316 struct tcp_pcb *pcbs; member 339 #define TCP_REG(pcbs, npcb) do {\ argument 341 for(tcp_tmp_pcb = *(pcbs); \ 346 …LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOS… 347 (npcb)->next = *(pcbs); \ 349 *(pcbs) = (npcb); \ 353 #define TCP_RMV(pcbs, npcb) do { \ argument 354 LWIP_ASSERT("TCP_RMV: pcbs != NULL", *(pcbs) != NULL); \ 355 … LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removing %p from %p\n", (npcb), *(pcbs))); \ 356 if(*(pcbs) == (npcb)) { \ [all …]
|
/external/syslinux/core/lwip/src/core/ |
D | tcp.c | 94 struct tcp_pcb ** const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs, 184 tcp_pcb_remove(&tcp_listen_pcbs.pcbs, pcb); in tcp_close_shutdown() 533 TCP_REG(&tcp_listen_pcbs.pcbs, (struct tcp_pcb *)lpcb); in tcp_listen_with_backlog() 1601 for(pcb = (struct tcp_pcb *)tcp_listen_pcbs.pcbs; pcb != NULL; pcb = pcb->next) { in tcp_debug_print_pcbs()
|
/external/syslinux/core/lwip/ |
D | CHANGELOG | 255 pcbs) by checking if the pcb was bound (local_port != 0). 262 raw pcbs with LWIP_TCPIP_CORE_LOCKING==1. 353 * tcp.c: Fixed bug #30728: tcp_new_port() did not check listen pcbs 1294 pcbs so that it is found faster next time. Same for RAW pcbs that have eaten 1857 port (only solution to let UDP pcbs 'bind' to a netif instead of an IP address) 1924 * tcp.c: Fixed bug #21080 (tcp_bind without check pcbs in TIME_WAIT state) 2058 * netif.c: Fixed bug #20180 (TCP pcbs listening on IP_ADDR_ANY could get
|