Searched refs:tcp_tw_pcbs (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | tcp.c | 125 struct tcp_pcb *tcp_tw_pcbs; variable 129 &tcp_active_pcbs, &tcp_tw_pcbs}; 282 TCP_REG(&tcp_tw_pcbs, pcb); in tcp_close_shutdown() 468 tcp_pcb_remove(&tcp_tw_pcbs, pcb); in tcp_abandon() 1214 pcb = tcp_tw_pcbs; in tcp_slowtmr() 1230 LWIP_ASSERT("tcp_slowtmr: middle tcp != tcp_tw_pcbs", pcb != tcp_tw_pcbs); in tcp_slowtmr() 1234 LWIP_ASSERT("tcp_slowtmr: first pcb == tcp_tw_pcbs", tcp_tw_pcbs == pcb); in tcp_slowtmr() 1235 tcp_tw_pcbs = pcb->next; in tcp_slowtmr() 1532 for (pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) { in tcp_kill_timewait() 2157 for (pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) { in tcp_debug_print_pcbs() [all …]
|
A D | timeouts.c | 132 if (tcp_active_pcbs || tcp_tw_pcbs) { in tcpip_tcp_timer() 150 if (!tcpip_tcp_timer_active && (tcp_active_pcbs || tcp_tw_pcbs)) { in tcp_timer_needed()
|
A D | tcp_in.c | 257 for (pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) { 905 TCP_REG(&tcp_tw_pcbs, pcb); 923 TCP_REG(&tcp_tw_pcbs, pcb); 933 TCP_REG(&tcp_tw_pcbs, pcb);
|
/AliOS-Things-master/components/netmgr/netdev/src/ |
A D | netdev_lwip.c | 509 extern struct tcp_pcb *tcp_tw_pcbs; in list_tcps() 542 for(pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) in list_tcps()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/snmp/ |
A D | snmp_mib2_tcp.c | 330 …uct tcp_pcb ** const tcp_pcb_nonlisten_lists[] = {&tcp_bound_pcbs, &tcp_active_pcbs, &tcp_tw_pcbs}; in tcp_ConnectionTable_get_cell_value() 375 …uct tcp_pcb ** const tcp_pcb_nonlisten_lists[] = {&tcp_bound_pcbs, &tcp_active_pcbs, &tcp_tw_pcbs}; in tcp_ConnectionTable_get_next_cell_instance_and_value()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/priv/ |
A D | tcp_priv.h | 331 extern struct tcp_pcb *tcp_tw_pcbs; /* List of all TCP PCBs in TIME-WAIT. */
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/priv/ |
A D | tcp_priv.h | 322 extern struct tcp_pcb *tcp_tw_pcbs; /* List of all TCP PCBs in TIME-WAIT. */
|
Completed in 23 milliseconds