Home
last modified time | relevance | path

Searched refs:TCP_SLOW_INTERVAL (Results 1 – 4 of 4) sorted by relevance

/lib/liblwip/src/core/
Dtcp.c887 TCP_FIN_WAIT_TIMEOUT / TCP_SLOW_INTERVAL) { in tcp_slowtmr()
899 (pcb->keep_idle + TCP_KEEP_DUR(pcb)) / TCP_SLOW_INTERVAL) in tcp_slowtmr()
910 / TCP_SLOW_INTERVAL) in tcp_slowtmr()
932 TCP_SYN_RCVD_TIMEOUT / TCP_SLOW_INTERVAL) { in tcp_slowtmr()
940 if ((u32_t)(tcp_ticks - pcb->tmr) > 2 * TCP_MSL / TCP_SLOW_INTERVAL) { in tcp_slowtmr()
1010 if ((u32_t)(tcp_ticks - pcb->tmr) > 2 * TCP_MSL / TCP_SLOW_INTERVAL) { in tcp_slowtmr()
1318 pcb->rto = 3000 / TCP_SLOW_INTERVAL; in tcp_alloc()
1320 pcb->sv = 3000 / TCP_SLOW_INTERVAL; in tcp_alloc()
Dtcp_in.c1097 m, m * TCP_SLOW_INTERVAL)); in tcp_receive()
1110 pcb->rto, pcb->rto * TCP_SLOW_INTERVAL)); in tcp_receive()
/lib/liblwip/src/include/lwip/
Dtcp_impl.h124 #ifndef TCP_SLOW_INTERVAL
125 #define TCP_SLOW_INTERVAL (2*TCP_TMR_INTERVAL) /* the coarse grained timeout in milliseconds … macro
/lib/liblwip/doc/
Drawapi.txt313 tcp_slowtmr() should be called every TCP_SLOW_INTERVAL milliseconds.