diff options
author | glebius <glebius@FreeBSD.org> | 2016-01-22 02:07:48 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2016-01-22 02:07:48 +0000 |
commit | 40ba1ae95a65027a63267d57c7b0fee6e030bbd2 (patch) | |
tree | dddc38b9e03f3559cc94d54c711282c48c319bd8 /include | |
parent | 0840cf26409ce91dd72208f7439fe1b11f4204c8 (diff) | |
download | FreeBSD-src-40ba1ae95a65027a63267d57c7b0fee6e030bbd2.zip FreeBSD-src-40ba1ae95a65027a63267d57c7b0fee6e030bbd2.tar.gz |
Provide new socket option TCP_CCALGOOPT, which stands for TCP congestion
control algorithm options. The argument is variable length and is opaque
to TCP, forwarded directly to the algorithm's ctl_output method.
Provide new includes directory netinet/cc, where algorithm specific
headers can be installed.
The new API doesn't yet have any in tree consumers.
The original code written by lstewart.
Reviewed by: rrs, emax
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D711
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile index c75de6e..8033de1 100644 --- a/include/Makefile +++ b/include/Makefile @@ -53,6 +53,7 @@ LSUBDIRS= cam/ata cam/scsi \ geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \ net/altq \ netgraph/atm netgraph/netflow \ + netinet/cc \ security/audit \ security/mac_biba security/mac_bsdextended security/mac_lomac \ security/mac_mls security/mac_partition \ |