cvs commit: src/sys/netinet tcp_var.h
Mike Silbersack
silby at FreeBSD.org
Sun Feb 24 05:13:21 UTC 2008
silby 2008-02-24 05:13:20 UTC
FreeBSD src repository
Modified files:
sys/netinet tcp_var.h
Log:
Change FreeBSD 7 so that it returns TCP options in
the same order that FreeBSD 6 and before did. Doug
White and the other bloodhounds at ISC discovered that
while FreeBSD 7's ordering of options was more efficient,
it caused some cable modem routers to ignore the
SYN-ACKs ordered in this fashion.
The placement of sackOK after the timestamp option seems
to be the critical difference:
FreeBSD 6:
<mss 1460,nop,wscale 1,nop,nop,timestamp 3512155768 0,sackOK,eol>
FreeBSD 7.0:
<mss 1460,nop,wscale 3,sackOK,timestamp 1370692577 0>
FreeBSD 7.0 + this change:
<mss 1460,nop,wscale 3,nop,nop,timestamp 7371813 0,sackOK,eol>
MFC after: 1 week
Revision Changes Path
1.161 +5 -2 src/sys/netinet/tcp_var.h
More information about the cvs-all
mailing list