diff options
| author | Stephen Hemminger <stephen@networkplumber.org> | 2013-02-05 07:25:17 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2013-02-05 14:51:16 -0500 | 
| commit | ca2eb5679f8ddffff60156af42595df44a315ef0 (patch) | |
| tree | e056a2cf5454039f071d47cc919bf73a9bf0c60f /include/linux/tcp.h | |
| parent | 547472b8e1da72ae226430c0c4273e36fc8ca768 (diff) | |
| download | olio-linux-3.10-ca2eb5679f8ddffff60156af42595df44a315ef0.tar.xz olio-linux-3.10-ca2eb5679f8ddffff60156af42595df44a315ef0.zip  | |
tcp: remove Appropriate Byte Count support
TCP Appropriate Byte Count was added by me, but later disabled.
There is no point in maintaining it since it is a potential source
of bugs and Linux already implements other better window protection
heuristics.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/tcp.h')
| -rw-r--r-- | include/linux/tcp.h | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 4e1d2283e3c..6d0d46138ae 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -246,7 +246,6 @@ struct tcp_sock {  	u32	sacked_out;	/* SACK'd packets			*/  	u32	fackets_out;	/* FACK'd packets			*/  	u32	tso_deferred; -	u32	bytes_acked;	/* Appropriate Byte Counting - RFC3465 */  	/* from STCP, retrans queue hinting */  	struct sk_buff* lost_skb_hint;  |