Searched defs:inactivity (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp.c467 * various timers such as the inactivity timer in each PCB.
760 u32_t inactivity; local
768 inactivity = 0;
773 (u32_t)(tcp_ticks - pcb->tmr) >= inactivity) {
774 inactivity = tcp_ticks - pcb->tmr;
781 (void *)inactive, inactivity));
791 u32_t inactivity; local
793 inactivity = 0;
796 if ((u32_t)(tcp_ticks - pcb->tmr) >= inactivity) {
797 inactivity
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp.c854 * various timers such as the inactivity timer in each PCB.
1305 u32_t inactivity; local
1312 inactivity = 0;
1317 (u32_t)(tcp_ticks - pcb->tmr) >= inactivity) {
1318 inactivity = tcp_ticks - pcb->tmr;
1325 (void *)inactive, inactivity));
1338 u32_t inactivity; local
1340 inactivity = 0;
1344 if ((u32_t)(tcp_ticks - pcb->tmr) >= inactivity) {
1345 inactivity
[all...]

Completed in 35 milliseconds