Home
last modified time | relevance | path

Searched refs:keep_idle (Results 1 – 8 of 8) sorted by relevance

/third_party/lwip/
D0088-modify-log-info-err.patch47 (pcb->keep_idle + TCP_KEEP_DUR(pcb)) / TCP_SLOW_INTERVAL) {
D0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch48 (pcb->keep_idle + TCP_KEEP_DUR(pcb)) / TCP_SLOW_INTERVAL) {
D0053-cleancode-improve-lwipopts.h-readability.patch1691 …#define TCP_KEEPALIVE 0x24 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds …
1692 …#define TCP_KEEPIDLE 0x04 /* set pcb->keep_idle - Same as TCP_KEEPALIVE, but use seconds for…
1698 …#define TCP_KEEPALIVE 0x02 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds …
1699 …#define TCP_KEEPIDLE 0x03 /* set pcb->keep_idle - Same as TCP_KEEPALIVE, but use seconds for…
D0002-adapt-lstack.patch4524 +#define TCP_KEEPALIVE 0x24 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds …
4525 +#define TCP_KEEPIDLE 0x04 /* set pcb->keep_idle - Same as TCP_KEEPALIVE, but use seconds for…
4530 …#define TCP_KEEPALIVE 0x02 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds …
4531 …#define TCP_KEEPIDLE 0x03 /* set pcb->keep_idle - Same as TCP_KEEPALIVE, but use seconds for…
/third_party/lwip/src/core/
Dtcp.c293 u32_t idle = (pcb->keep_idle) / TCP_SLOW_INTERVAL; in tcp_set_timer_tick_by_keepalive()
1511 (pcb->keep_idle + TCP_KEEP_DUR(pcb)) / TCP_SLOW_INTERVAL) {
1519 (pcb->keep_idle + pcb->keep_cnt_sent * TCP_KEEP_INTVL(pcb))
2098 pcb->keep_idle = TCP_KEEPIDLE_DEFAULT;
Daltcp_tcp.c472 pcb->keep_idle = idle ? idle : TCP_KEEPIDLE_DEFAULT; in altcp_tcp_keepalive_enable()
/third_party/lwip/src/include/lwip/
Dtcp.h369 u32_t keep_idle; member
/third_party/lwip/src/api/
Dsockets.c3170 *(int *)optval = (int)sock->conn->pcb.tcp->keep_idle; in lwip_getsockopt_impl()
3177 *(int *)optval = (int)(sock->conn->pcb.tcp->keep_idle / 1000); in lwip_getsockopt_impl()
3650 sock->conn->pcb.tcp->keep_idle = (u32_t)(*(const int *)optval); in lwip_setsockopt_impl()
3652 s, sock->conn->pcb.tcp->keep_idle)); in lwip_setsockopt_impl()
3657 sock->conn->pcb.tcp->keep_idle = 1000 * (u32_t)(*(const int *)optval); in lwip_setsockopt_impl()
3659 s, sock->conn->pcb.tcp->keep_idle)); in lwip_setsockopt_impl()