diff options
author | lstewart <lstewart@FreeBSD.org> | 2010-12-02 06:40:21 +0000 |
---|---|---|
committer | lstewart <lstewart@FreeBSD.org> | 2010-12-02 06:40:21 +0000 |
commit | 8300743dab1b621514e4c688e15d369f8c8e9be5 (patch) | |
tree | b6d892dd8fd54de3ce233a34e3fc30f9e0f40dba /sys/modules/cc | |
parent | 6e097be88ac502e789f7458d7a175c16838e09b9 (diff) | |
download | FreeBSD-src-8300743dab1b621514e4c688e15d369f8c8e9be5.zip FreeBSD-src-8300743dab1b621514e4c688e15d369f8c8e9be5.tar.gz |
Import a clean-room implementation of the experimental H-TCP congestion control
algorithm based on the Internet-Draft "draft-leith-tcp-htcp-06.txt". It is
implemented as a kernel module compatible with the recently committed modular
congestion control framework.
H-TCP was designed to provide increased throughput in fast and long-distance
networks. It attempts to maintain fairness when competing with legacy NewReno
TCP in lower speed scenarios where NewReno is able to operate adequately. The
paper "H-TCP: A framework for congestion control in high-speed and long-distance
networks" provides additional detail.
In collaboration with: David Hayes <dahayes at swin edu au> and
Grenville Armitage <garmitage at swin edu au>
Sponsored by: FreeBSD Foundation
Reviewed by: rpaulo (older patch from a few weeks ago)
MFC after: 3 months
Diffstat (limited to 'sys/modules/cc')
-rw-r--r-- | sys/modules/cc/Makefile | 3 | ||||
-rw-r--r-- | sys/modules/cc/cc_htcp/Makefile | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/sys/modules/cc/Makefile b/sys/modules/cc/Makefile index 94a72a0..9743e79 100644 --- a/sys/modules/cc/Makefile +++ b/sys/modules/cc/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ -SUBDIR= cc_cubic +SUBDIR= cc_cubic \ + cc_htcp .include <bsd.subdir.mk> diff --git a/sys/modules/cc/cc_htcp/Makefile b/sys/modules/cc/cc_htcp/Makefile new file mode 100644 index 0000000..dd3637d --- /dev/null +++ b/sys/modules/cc/cc_htcp/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +.PATH: ${.CURDIR}/../../../netinet/cc +KMOD= cc_htcp +SRCS= cc_htcp.c + +.include <bsd.kmod.mk> |