Lines Matching defs:offer
3799 tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer,
3820 KASSERT(offer == -1, ("%s: conflict", __func__));
3821 offer = mtuoffer - min_protoh;
3856 switch (offer) {
3863 offer = tp->t_maxseg;
3877 offer = max(offer, V_tcp_minmss);
3929 mss = min(mss, offer);
3956 tcp_mss(struct tcpcb *tp, int offer)
3968 tcp_mss_update(tp, offer, -1, &metrics, &cap);