aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid2.h
diff options
context:
space:
mode:
authorAndrea Bittau <a.bittau@cs.ucl.ac.uk>2006-09-19 16:07:20 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 18:19:11 -0400
commitd458c25ce24ce00ea547e9976e293e7835416253 (patch)
treeb15e036537270aa0f70c390556aaa483702fd326 /net/dccp/ccids/ccid2.h
parent29651cda97b0a9e4ac0fbeb5ea731a9909f0f128 (diff)
[DCCP] CCID2: Initialize ssthresh to infinity
Initialize the slow-start threshold to infinity. This way, upon connection initiation, slow-start will be exited only upon a packet loss. This patch will allow connections to quickly gain speed. Signed-off-by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids/ccid2.h')
-rw-r--r--net/dccp/ccids/ccid2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h
index 451a87464fa5..b4cc6c0bf020 100644
--- a/net/dccp/ccids/ccid2.h
+++ b/net/dccp/ccids/ccid2.h
@@ -50,7 +50,7 @@ struct ccid2_hc_tx_sock {
50 int ccid2hctx_cwnd; 50 int ccid2hctx_cwnd;
51 int ccid2hctx_ssacks; 51 int ccid2hctx_ssacks;
52 int ccid2hctx_acks; 52 int ccid2hctx_acks;
53 int ccid2hctx_ssthresh; 53 unsigned int ccid2hctx_ssthresh;
54 int ccid2hctx_pipe; 54 int ccid2hctx_pipe;
55 int ccid2hctx_numdupack; 55 int ccid2hctx_numdupack;
56 struct ccid2_seq *ccid2hctx_seqbuf; 56 struct ccid2_seq *ccid2hctx_seqbuf;