Home
last modified time | relevance | path

Searched refs:tcp_opt_mss (Results 1 – 3 of 3) sorted by relevance

/onnv-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c268 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()
418 tcpopt.tcp_opt_mss = tcps->tcps_mss_def_ipv4; in tcp_process_options()
420 tcpopt.tcp_opt_mss = tcps->tcps_mss_def_ipv6; in tcp_process_options()
426 if (tcpopt.tcp_opt_mss < tcps->tcps_mss_min) in tcp_process_options()
427 tcpopt.tcp_opt_mss = tcps->tcps_mss_min; in tcp_process_options()
428 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
429 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()
522 tcpopt.tcp_opt_mss -= connp->conn_ht_iphc_len + in tcp_process_options()
538 tcp_mss_set(tcp, MIN(tcpopt.tcp_opt_mss, tcp->tcp_mss)); in tcp_process_options()
/onnv-gate/usr/src/stand/lib/tcp/
H A Dtcp.c107 uint32_t tcp_opt_mss; member
2051 tcpopt->tcp_opt_mss = mss; in tcp_parse_options()
2248 tcpopt.tcp_opt_mss = tcp_mss_def_ipv4; in tcp_process_options()
2252 if (tcpopt.tcp_opt_mss < tcp_mss_min) in tcp_process_options()
2253 tcpopt.tcp_opt_mss = tcp_mss_min; in tcp_process_options()
2254 else if (tcpopt.tcp_opt_mss > mss_max) in tcp_process_options()
2255 tcpopt.tcp_opt_mss = mss_max; in tcp_process_options()
2342 tcpopt.tcp_opt_mss -= tcp->tcp_hdr_len - in tcp_process_options()
2356 tcp_mss_set(tcp, MIN(tcpopt.tcp_opt_mss, tcp->tcp_mss)); in tcp_process_options()
/onnv-gate/usr/src/uts/common/inet/
H A Dtcp_impl.h245 uint32_t tcp_opt_mss; member