[TCP]: Add H-TCP congestion control module.
authorBaruch Even <baruch@ev-en.org>
Thu, 23 Jun 2005 19:28:11 +0000 (12:28 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Jun 2005 19:28:11 +0000 (12:28 -0700)
commita7868ea68d29eb2c037952aeb3b549cf05749a18
treefff3d29309d29977f3ff55e941702407011af44c
parentb87d8561d8667d221b728ccdcb18eb95b16a687b
[TCP]: Add H-TCP congestion control module.

H-TCP is a congestion control algorithm developed at the Hamilton Institute, by
Douglas Leith and Robert Shorten. It is extending the standard Reno algorithm
with mode switching is thus a relatively simple modification.

H-TCP is defined in a layered manner as it is still a research platform. The
basic form includes the modification of beta according to the ratio of maxRTT
to min RTT and the alpha=2*factor*(1-beta) relation, where factor is dependant
on the time since last congestion.

The other layers improve convergence by adding appropriate factors to alpha.

The following patch implements the H-TCP algorithm in it's basic form.

Signed-Off-By: Baruch Even <baruch@ev-en.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/Kconfig
net/ipv4/Makefile
net/ipv4/tcp_htcp.c [new file with mode: 0644]