Home
last modified time | relevance | path

Searched refs:t_maxopd (Results 1 – 7 of 7) sorted by relevance

/xnu-12377.61.12/bsd/netinet/
H A Dtcp_timer.c932 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_pmtud_revert_segment_size()
933 tp->t_maxopd = tp->t_pmtud_saved_maxopd; in tcp_pmtud_revert_segment_size()
934 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_pmtud_revert_segment_size()
960 if (tp->t_maxopd > tcp_pmtud_black_hole_mss) { in tcp_pmtud_black_holed_next_mss()
1298 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_timers()
1300 tp->t_pmtud_saved_maxopd = tp->t_maxopd; in tcp_timers()
1306 tp->t_maxopd = tcp_pmtud_black_holed_next_mss(tp); in tcp_timers()
1307 tp->t_maxseg = tp->t_maxopd - optlen; in tcp_timers()
2919 optlen = tp->t_maxopd - tp->t_maxseg; in tcp_update_mss_core()
2924 tp->t_maxopd < tp->t_cached_maxopd) { in tcp_update_mss_core()
[all …]
H A Dtcp_var.h491 uint32_t t_maxopd; /* mss plus options */ member
1173 u_int t_maxopd; /* mss plus options */ member
1569 u_int t_maxopd; /* mss plus options */ member
1652 u_int t_maxopd; /* mss plus options */ member
H A Dtcp_subr.c1312 tp->t_maxseg = tp->t_maxopd = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_newtcpcb()
2176 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_otcpcb()
2360 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb64()
3154 tp->t_maxopd = tp->t_maxseg = in tcp_mtudisc()
3177 if (tp->t_maxopd) { in tcp_mtudisc()
3178 mss = min(mss, tp->t_maxopd); in tcp_mtudisc()
3197 if (tp->t_maxopd <= mss) { in tcp_mtudisc()
3200 tp->t_maxopd = mss; in tcp_mtudisc()
H A Din_pcblist.c261 xt->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb_n()
H A Dtcp_output.c334 if (so->so_snd.sb_cc > (tp->t_maxopd - MAX_TCPOPTLEN)) { in tcp_tfo_check()
2516 if (len + optlen + ipoptlen > tp->t_maxopd) { in tcp_output()
2536 if (len % (tp->t_maxopd - optlen) != 0) { in tcp_output()
2537 len = len - (len % (tp->t_maxopd - optlen)); in tcp_output()
2541 len = tp->t_maxopd - optlen - ipoptlen; in tcp_output()
3067 m->m_pkthdr.tso_segsz = (uint16_t)(tp->t_maxopd - optlen); in tcp_output()
H A Dmptcp_opt.c516 if ((len + optlen + dssoptlen) > tp->t_maxopd) { \ in mptcp_setup_opts()
519 tp->t_maxseg, tp->t_maxopd); \ in mptcp_setup_opts()
521 len = tp->t_maxopd - optlen - dssoptlen; \ in mptcp_setup_opts()
H A Dtcp_input.c7135 tp->t_maxopd = tp->t_maxseg = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
7216 tp->t_maxopd = mss; in tcp_mss()