aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r--net/dccp/ccids/ccid2.c7
-rw-r--r--net/dccp/ccids/ccid2.h2
2 files changed, 6 insertions, 3 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c
index 54a6b7ef3b7b..699a56674659 100644
--- a/net/dccp/ccids/ccid2.c
+++ b/net/dccp/ccids/ccid2.c
@@ -678,9 +678,12 @@ static int ccid2_hc_tx_init(struct ccid *ccid, struct sock *sk)
678 int seqcount = ccid2_seq_len; 678 int seqcount = ccid2_seq_len;
679 int i; 679 int i;
680 680
681 /* XXX init variables with proper values */
682 hctx->ccid2hctx_cwnd = 1; 681 hctx->ccid2hctx_cwnd = 1;
683 hctx->ccid2hctx_ssthresh = 10; 682 /* Initialize ssthresh to infinity. This means that we will exit the
683 * initial slow-start after the first packet loss. This is what we
684 * want.
685 */
686 hctx->ccid2hctx_ssthresh = ~0;
684 hctx->ccid2hctx_numdupack = 3; 687 hctx->ccid2hctx_numdupack = 3;
685 688
686 /* XXX init ~ to window size... */ 689 /* XXX init ~ to window size... */
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;