Searched refs:tcp_ticks (Results 1 - 10 of 10) sorted by relevance
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | tcp.c | 56 u32_t tcp_ticks; variable 88 tcp_ticks = 0; 479 ++tcp_ticks; 531 if ((u32_t)(tcp_ticks - pcb->tmr) > 540 if((u32_t)(tcp_ticks - pcb->tmr) > (pcb->keepalive + TCP_MAXIDLE) / TCP_SLOW_INTERVAL) { 547 else if((u32_t)(tcp_ticks - pcb->tmr) > (pcb->keepalive + pcb->keep_cnt * TCP_KEEPINTVL) / TCP_SLOW_INTERVAL) { 558 (u32_t)tcp_ticks - pcb->tmr >= 568 if ((u32_t)(tcp_ticks - pcb->tmr) > 577 if ((u32_t)(tcp_ticks - pcb->tmr) > 2 * TCP_MSL / TCP_SLOW_INTERVAL) { 628 if ((u32_t)(tcp_ticks [all...] |
H A D | tcp_out.c | 552 pcb->rttest = tcp_ticks; 686 LWIP_DEBUGF(TCP_DEBUG, ("tcp_keepalive: tcp_ticks %"U32_F" pcb->tmr %"U32_F" pcb->keep_cnt %"U16_F"\n", tcp_ticks, pcb->tmr, pcb->keep_cnt));
|
H A D | tcp_in.c | 478 pcb->tmr = tcp_ticks; 813 m = tcp_ticks - pcb->rttest;
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | tcp.c | 98 u32_t tcp_ticks; variable 869 ++tcp_ticks; 959 if ((u32_t)(tcp_ticks - pcb->tmr) > 971 if((u32_t)(tcp_ticks - pcb->tmr) > 981 else if((u32_t)(tcp_ticks - pcb->tmr) > 995 (u32_t)tcp_ticks - pcb->tmr >= pcb->rto * TCP_OOSEQ_TIMEOUT) { 1014 if ((u32_t)(tcp_ticks - pcb->tmr) > 1023 if ((u32_t)(tcp_ticks - pcb->tmr) > 2 * TCP_MSL / TCP_SLOW_INTERVAL) { 1093 if ((u32_t)(tcp_ticks - pcb->tmr) > 2 * TCP_MSL / TCP_SLOW_INTERVAL) { 1317 (u32_t)(tcp_ticks [all...] |
H A D | tcp_out.c | 1118 pcb->rttest = tcp_ticks; 1394 LWIP_DEBUGF(TCP_DEBUG, ("tcp_keepalive: tcp_ticks %"U32_F" pcb->tmr %"U32_F" pcb->keep_cnt_sent %"U16_F"\n", 1395 tcp_ticks, pcb->tmr, pcb->keep_cnt_sent)); 1449 ("tcp_zero_window_probe: tcp_ticks %"U32_F 1451 tcp_ticks, pcb->tmr, pcb->keep_cnt_sent));
|
H A D | tcp_in.c | 801 pcb->tmr = tcp_ticks; 875 pcb->tmr = tcp_ticks; 1369 m = (s16_t)(tcp_ticks - pcb->rttest);
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 278 #define tcp_ticks lwip_tcp_ticks macro
|
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/ |
H A D | lwip-namespace.h | 200 #define tcp_ticks lwip_tcp_ticks macro
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | tcp_impl.h | 312 extern u32_t tcp_ticks;
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | tcp.h | 435 extern u32_t tcp_ticks;
|
Completed in 72 milliseconds