Fix SACK negotiation that was broken in rev 1.105.
Before this fix, FreeBSD would negotiate SACK on outgoing connections, but would always fail to negotiate it on incoming connections. Discovered by: James Healy and Lawrence Stewart Submitted by: James Healy and Lawrence Stewart MFC after: 3 days
This commit is contained in:
parent
ba63339a0a
commit
136286a141
@ -1184,7 +1184,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
|
||||
if (to->to_flags & TOF_SIGNATURE)
|
||||
sc->sc_flags |= SCF_SIGNATURE;
|
||||
#endif
|
||||
if (to->to_flags & TOF_SACK)
|
||||
if (to->to_flags & TOF_SACKPERM)
|
||||
sc->sc_flags |= SCF_SACK;
|
||||
if (to->to_flags & TOF_MSS)
|
||||
sc->sc_peer_mss = to->to_mss; /* peer mss may be zero */
|
||||
|
Loading…
Reference in New Issue
Block a user