how is this the opposite? your patch shows the tcb->mss init being removed
completely from tcpincoming().
- /* our sending max segment size cannot be bigger than what he asked for
*/
- if(lp->mss != 0 && lp->mss < tcb->mss) {
- tcb->mss = lp->mss;
- tpriv->stats[Mss] = tcb->mss;
- }
+ /* per rfc, we can't set the mss any more */
+ // tcb->mss = tcpmtu(s->p, lp->laddr, lp->version, lp->mss, &tcb->scale);-- cinap
