Date: Wed, 23 Jun 2004 21:04:38 +0000 (UTC) From: Paul Saab <ps@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files options src/sys/netinet tcp.h tcp_input.c tcp_output.c tcp_sack.c tcp_seq.h tcp_subr.c tcp_syncache.c tcp_timer.c tcp_var.h Message-ID: <200406232104.i5NL4ci4044598@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
ps 2004-06-23 21:04:38 UTC
FreeBSD src repository
Modified files:
sys/conf files options
sys/netinet tcp.h tcp_input.c tcp_output.c tcp_seq.h
tcp_subr.c tcp_syncache.c tcp_timer.c
tcp_var.h
Added files:
sys/netinet tcp_sack.c
Log:
Add support for TCP Selective Acknowledgements. The work for this
originated on RELENG_4 and was ported to -CURRENT.
The scoreboarding code was obtained from OpenBSD, and many
of the remaining changes were inspired by OpenBSD, but not
taken directly from there.
You can enable/disable sack using net.inet.tcp.do_sack. You can
also limit the number of sack holes that all senders can have in
the scoreboard with net.inet.tcp.sackhole_limit.
Reviewed by: gnn
Obtained from: Yahoo! (Mohan Srinivasan, Jayanth Vijayaraghavan)
Revision Changes Path
1.908 +1 -0 src/sys/conf/files
1.454 +1 -0 src/sys/conf/options
1.25 +12 -0 src/sys/netinet/tcp.h
1.243 +77 -16 src/sys/netinet/tcp_input.c
1.95 +115 -3 src/sys/netinet/tcp_output.c
1.1 +592 -0 src/sys/netinet/tcp_sack.c (new)
1.22 +3 -0 src/sys/netinet/tcp_seq.h
1.192 +16 -0 src/sys/netinet/tcp_subr.c
1.60 +14 -1 src/sys/netinet/tcp_syncache.c
1.65 +3 -0 src/sys/netinet/tcp_timer.c
1.106 +48 -1 src/sys/netinet/tcp_var.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200406232104.i5NL4ci4044598>
