Home
last modified time | relevance | path

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

/openbmc/linux/include/linux/
H A Dtcp.h128 u16 user_mss; /* mss requested by user in ioctl */ member
557 u16 user_mss = READ_ONCE(tp->rx_opt.user_mss); in tcp_mss_clamp() local
559 return (user_mss && user_mss < mss) ? user_mss : mss; in tcp_mss_clamp()
/openbmc/linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_cm.h93 #define USER_MSS(tp) ((tp)->rx_opt.user_mss)
/openbmc/linux/net/ipv4/
H A Dtcp_input.c4092 u16 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss) in tcp_parse_mss_option() argument
4120 if (user_mss && user_mss < in_mss) in tcp_parse_mss_option()
4121 in_mss = user_mss; in tcp_parse_mss_option()
4173 if (opt_rx->user_mss && in tcp_parse_options()
4174 opt_rx->user_mss < in_mss) in tcp_parse_options()
4175 in_mss = opt_rx->user_mss; in tcp_parse_options()
6231 if (mss == tp->rx_opt.user_mss) { in tcp_rcv_fastopen_synack()
6236 opt.user_mss = opt.mss_clamp = 0; in tcp_rcv_fastopen_synack()
7057 mss = tcp_parse_mss_option(th, tp->rx_opt.user_mss); in tcp_get_syncookie_mss()
7111 tmp_opt.user_mss = tp->rx_opt.user_mss; in tcp_conn_request()
H A Dtcp.c3533 tp->rx_opt.user_mss = val; in do_tcp_setsockopt()
3996 if (tp->rx_opt.user_mss && in do_tcp_getsockopt()
3998 val = tp->rx_opt.user_mss; in do_tcp_getsockopt()
H A Dtcp_output.c1785 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
1789 It is minimum of user_mss and mss received with SYN.
3786 if (tp->rx_opt.user_mss) in tcp_connect_init()
3787 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss; in tcp_connect_init()
/openbmc/linux/include/net/
H A Dtcp.h441 u16 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss);