Home
last modified time | relevance | path

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

/linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_cm.c954 u16 user_mss; in chtls_select_mss() local
973 user_mss = USER_MSS(tp); in chtls_select_mss()
974 if (user_mss && tp->advmss > user_mss) in chtls_select_mss()
975 tp->advmss = user_mss; in chtls_select_mss()
/linux/net/ipv4/
H A Dtcp_input.c4491 u16 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss) in tcp_parse_mss_option() argument
4519 if (user_mss && user_mss < in_mss) in tcp_parse_mss_option()
4520 in_mss = user_mss; in tcp_parse_mss_option()
4572 if (opt_rx->user_mss && in tcp_parse_options()
4573 opt_rx->user_mss < in_mss) in tcp_parse_options()
4574 in_mss = opt_rx->user_mss; in tcp_parse_options()
6739 if (mss == READ_ONCE(tp->rx_opt.user_mss)) { in tcp_rcv_fastopen_synack()
6744 opt.user_mss = opt.mss_clamp = 0; in tcp_rcv_fastopen_synack()
7580 mss = tcp_parse_mss_option(th, READ_ONCE(tp->rx_opt.user_mss)); in tcp_get_syncookie_mss()
7645 tmp_opt.user_mss = READ_ONCE(tp->rx_opt.user_mss); in tcp_conn_request()
H A Dtcp.c3836 WRITE_ONCE(tcp_sk(sk)->rx_opt.user_mss, val); in tcp_sock_set_maxseg()
4493 int user_mss; in do_tcp_getsockopt() local
4507 user_mss = READ_ONCE(tp->rx_opt.user_mss); in do_tcp_getsockopt()
4508 if (user_mss && in do_tcp_getsockopt()
4510 val = user_mss; in do_tcp_getsockopt()
/linux/include/net/
H A Dtcp.h548 u16 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss);