diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-11-09 19:32:06 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:21:48 -0500 |
commit | 3ff825b28d3345ef381eceae22bf9d92231f23dc (patch) | |
tree | c3ca6ec1888ff912e0434f6621ecb2e46e8826f3 /include/net/tcp.h | |
parent | b68dbcab1dc70938fa5516d0ee82c0bf94e9a768 (diff) |
[TCP]: Add tcp_available_congestion_control sysctl.
Create /proc/sys/net/ipv4/tcp_available_congestion_control
that reflects currently available TCP choices.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 246916c2321e..6af4baf5b769 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -620,6 +620,9 @@ enum tcp_ca_event { | |||
620 | * Interface for adding new TCP congestion control handlers | 620 | * Interface for adding new TCP congestion control handlers |
621 | */ | 621 | */ |
622 | #define TCP_CA_NAME_MAX 16 | 622 | #define TCP_CA_NAME_MAX 16 |
623 | #define TCP_CA_MAX 128 | ||
624 | #define TCP_CA_BUF_MAX (TCP_CA_NAME_MAX*TCP_CA_MAX) | ||
625 | |||
623 | struct tcp_congestion_ops { | 626 | struct tcp_congestion_ops { |
624 | struct list_head list; | 627 | struct list_head list; |
625 | 628 | ||
@@ -659,6 +662,7 @@ extern void tcp_init_congestion_control(struct sock *sk); | |||
659 | extern void tcp_cleanup_congestion_control(struct sock *sk); | 662 | extern void tcp_cleanup_congestion_control(struct sock *sk); |
660 | extern int tcp_set_default_congestion_control(const char *name); | 663 | extern int tcp_set_default_congestion_control(const char *name); |
661 | extern void tcp_get_default_congestion_control(char *name); | 664 | extern void tcp_get_default_congestion_control(char *name); |
665 | extern void tcp_get_available_congestion_control(char *buf, size_t len); | ||
662 | extern int tcp_set_congestion_control(struct sock *sk, const char *name); | 666 | extern int tcp_set_congestion_control(struct sock *sk, const char *name); |
663 | extern void tcp_slow_start(struct tcp_sock *tp); | 667 | extern void tcp_slow_start(struct tcp_sock *tp); |
664 | 668 | ||