Home
last modified time | relevance | path

Searched refs:fastopen (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/net/ipv4/
Dtcp_minisocks.c570 bool fastopen, bool *req_stolen) in tcp_check_req() argument
632 if (!fastopen) in tcp_check_req()
697 if ((flg & TCP_FLAG_ACK) && !fastopen && in tcp_check_req()
753 if (fastopen) in tcp_check_req()
794 } else if (fastopen) { /* received a valid RST pkt */ in tcp_check_req()
798 if (!fastopen) { in tcp_check_req()
Dtcp_fastopen.c361 goto fastopen; in tcp_try_fastopen()
382 fastopen: in tcp_try_fastopen()
Dtcp_ipv4.c435 struct request_sock *fastopen; in tcp_v4_err() local
484 fastopen = rcu_dereference(tp->fastopen_rsk); in tcp_v4_err()
485 snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una; in tcp_v4_err()
531 !icsk->icsk_backoff || fastopen) in tcp_v4_err()
575 if (fastopen && !fastopen->sk) in tcp_v4_err()
Dtcp_output.c593 struct tcp_fastopen_request *fastopen = tp->fastopen_req; in tcp_syn_options() local
636 if (fastopen && fastopen->cookie.len >= 0) { in tcp_syn_options()
637 u32 need = fastopen->cookie.len; in tcp_syn_options()
639 need += fastopen->cookie.exp ? TCPOLEN_EXP_FASTOPEN_BASE : in tcp_syn_options()
644 opts->fastopen_cookie = &fastopen->cookie; in tcp_syn_options()
647 tp->syn_fastopen_exp = fastopen->cookie.exp ? 1 : 0; in tcp_syn_options()
/Linux-v5.4/net/ipv6/
Dtcp_ipv6.c366 struct request_sock *fastopen; in tcp_v6_err() local
410 fastopen = rcu_dereference(tp->fastopen_rsk); in tcp_v6_err()
411 snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una; in tcp_v6_err()
458 if (fastopen && !fastopen->sk) in tcp_v6_err()
/Linux-v5.4/include/net/
Dtcp.h378 struct request_sock *req, bool fastopen,