Home
last modified time | relevance | path

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

/linux/net/ipv4/
H A Dtcp_output.c2007 /* Clamp it (mss_clamp does not include tcp options) */ in __tcp_mtu_to_mss()
2008 if (mss_now > tp->rx_opt.mss_clamp) in __tcp_mtu_to_mss()
2009 mss_now = tp->rx_opt.mss_clamp; in __tcp_mtu_to_mss()
2049 icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + sizeof(struct tcphdr) + in tcp_mtup_init()
2062 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
2071 tp->rx_opt.mss_clamp.
2580 icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + in tcp_mtu_check_reprobe()
2709 * and current mss_clamp. if (search_high - search_low) in tcp_mtu_probe()
3319 /* MSS for the peer's data. Previous versions used mss_clamp in __tcp_select_window()
4122 tp->rx_opt.mss_clamp in tcp_connect_init()
[all...]
H A Dtcp_input.c615 per_mss = max_t(u32, tp->rx_opt.mss_clamp, tp->mss_cache) + in tcp_sndbuf_expand()
4605 opt_rx->mss_clamp = in_mss; in tcp_parse_options()
6769 u16 mss = tp->rx_opt.mss_clamp, try_exp = 0; in tcp_rcv_fastopen_synack()
6777 opt.user_mss = opt.mss_clamp = 0; in tcp_rcv_fastopen_synack()
6779 mss = opt.mss_clamp; in tcp_rcv_fastopen_synack()
6858 int saved_clamp = tp->rx_opt.mss_clamp; in tcp_rcv_synsent_state_process()
7092 tp->rx_opt.mss_clamp = saved_clamp; in tcp_rcv_synsent_state_process()
7098 tp->rx_opt.mss_clamp = saved_clamp; in tcp_rcv_synsent_state_process()
7506 req->mss = rx_opt->mss_clamp; in tcp_openreq_init()
7615 mss = af_ops->mss_clamp; in tcp_get_syncookie_mss()
[all …]
H A Dtcp_minisocks.c658 newtp->rx_opt.mss_clamp = req->mss; in tcp_create_openreq_child()
H A Dtcp_ipv4.c298 tp->rx_opt.mss_clamp = TCP_MSS_DEFAULT; in tcp_v4_connect()
1637 .mss_clamp = TCP_MSS_DEFAULT,
/linux/include/linux/
H A Dtcp.h130 u16 mss_clamp; /* Maximal mss, negotiated at connection setup */ member
/linux/net/ipv6/
H A Dtcp_ipv6.c319 tp->rx_opt.mss_clamp = IPV6_MIN_MTU - sizeof(struct tcphdr) - sizeof(struct ipv6hdr); in tcp_v6_connect()
828 .mss_clamp = IPV6_MIN_MTU - sizeof(struct tcphdr) -
/linux/drivers/infiniband/hw/cxgb4/
H A Dcm.c3987 req->tcpopt.mss = htons(tmp_opt.mss_clamp); in build_cpl_pass_accept_req()
/linux/net/core/
H A Dfilter.c8313 const u16 mss_clamp = IPV6_MIN_MTU - sizeof(struct tcphdr) - in BPF_CALL_3() local
8321 mss = tcp_parse_mss_option(th, 0) ?: mss_clamp; in BPF_CALL_3()