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

/xnu-2782.1.97/bsd/netinet/
H A Dtcp_timer.c641 optlen = tp->t_maxopd - tp->t_maxseg;
642 tp->t_maxopd = tp->t_pmtud_saved_maxopd;
643 tp->t_maxseg = tp->t_maxopd - optlen;
826 optlen = tp->t_maxopd - tp->t_maxseg;
828 tp->t_pmtud_saved_maxopd = tp->t_maxopd;
833 if (tp->t_maxopd > tcp_pmtud_black_hole_mss) {
834 tp->t_maxopd = tcp_pmtud_black_hole_mss;
836 tp->t_maxopd = /* use the default MSS */
842 tp->t_maxseg = tp->t_maxopd - optlen;
H A Dtcp_var.h302 u_int t_maxopd; /* mss plus options */ member in struct:tcpcb
728 u_int t_maxopd; /* mss plus options */ member in struct:otcpcb
1019 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb64
1101 u_int t_maxopd; /* mss plus options */ member in struct:xtcpcb_n
H A Din_pcblist.c225 xt->t_maxopd = tp->t_maxopd;
H A Dtcp_subr.c900 tp->t_maxseg = tp->t_maxopd =
1429 otp->t_maxopd = tp->t_maxopd;
1612 otp->t_maxopd = tp->t_maxopd;
2132 tp->t_maxopd = tp->t_maxseg =
2178 if (tp->t_maxopd <= mss)
2180 tp->t_maxopd = mss;
H A Dmptcp_opt.c618 if ((datalen + optlen + len) > tp->t_maxopd) { \
622 tp->t_maxseg, tp->t_maxopd); \
624 datalen = tp->t_maxopd - optlen - len; \
H A Dtcp_output.c1423 * bump the packet length beyond the t_maxopd length.
1434 if (len + optlen + ipoptlen > tp->t_maxopd) {
1448 len = len - (len % (tp->t_maxopd - optlen));
1454 len = tp->t_maxopd - optlen - ipoptlen;
1849 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen;
H A Dtcp_input.c4938 tp->t_maxopd = tp->t_maxseg =
5029 tp->t_maxopd = mss;

Completed in 61 milliseconds