Home
last modified time | relevance | path

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

/xnu-12377.41.6/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_output.c332 if (so->so_snd.sb_cc > (tp->t_maxopd - MAX_TCPOPTLEN)) { in tcp_tfo_check()
2456 if (len + optlen + ipoptlen > tp->t_maxopd) { in tcp_output()
2476 if (len % (tp->t_maxopd - optlen) != 0) { in tcp_output()
2477 len = len - (len % (tp->t_maxopd - optlen)); in tcp_output()
2481 len = tp->t_maxopd - optlen - ipoptlen; in tcp_output()
3007 m->m_pkthdr.tso_segsz = (uint16_t)(tp->t_maxopd - optlen); in tcp_output()
H A Dtcp_subr.c1308 tp->t_maxseg = tp->t_maxopd = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_newtcpcb()
2172 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_otcpcb()
2356 otp->t_maxopd = tp->t_maxopd; in tcpcb_to_xtcpcb64()
3150 tp->t_maxopd = tp->t_maxseg = in tcp_mtudisc()
3173 if (tp->t_maxopd) { in tcp_mtudisc()
3174 mss = min(mss, tp->t_maxopd); in tcp_mtudisc()
3193 if (tp->t_maxopd <= mss) { in tcp_mtudisc()
3196 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 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.c7134 tp->t_maxopd = tp->t_maxseg = isipv6 ? tcp_v6mssdflt : tcp_mssdflt; in tcp_mss()
7215 tp->t_maxopd = mss; in tcp_mss()