diff options
Diffstat (limited to 'net/dccp/ccids/ccid2.h')
-rw-r--r-- | net/dccp/ccids/ccid2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h index b72e9556a155..bc659f00cb96 100644 --- a/net/dccp/ccids/ccid2.h +++ b/net/dccp/ccids/ccid2.h | |||
@@ -42,6 +42,7 @@ struct ccid2_seq { | |||
42 | 42 | ||
43 | /** struct ccid2_hc_tx_sock - CCID2 TX half connection | 43 | /** struct ccid2_hc_tx_sock - CCID2 TX half connection |
44 | * | 44 | * |
45 | * @ccid2hctx_{cwnd,ssthresh,pipe}: as per RFC 4341, section 5 | ||
45 | * @ccid2hctx_ssacks - ACKs recv in slow start | 46 | * @ccid2hctx_ssacks - ACKs recv in slow start |
46 | * @ccid2hctx_acks - ACKS recv in AI phase | 47 | * @ccid2hctx_acks - ACKS recv in AI phase |
47 | * @ccid2hctx_lastrtt -time RTT was last measured | 48 | * @ccid2hctx_lastrtt -time RTT was last measured |
@@ -51,9 +52,9 @@ struct ccid2_seq { | |||
51 | struct ccid2_hc_tx_sock { | 52 | struct ccid2_hc_tx_sock { |
52 | u32 ccid2hctx_cwnd; | 53 | u32 ccid2hctx_cwnd; |
53 | u32 ccid2hctx_ssthresh; | 54 | u32 ccid2hctx_ssthresh; |
55 | u32 ccid2hctx_pipe; | ||
54 | int ccid2hctx_ssacks; | 56 | int ccid2hctx_ssacks; |
55 | int ccid2hctx_acks; | 57 | int ccid2hctx_acks; |
56 | int ccid2hctx_pipe; | ||
57 | struct ccid2_seq *ccid2hctx_seqbuf[CCID2_SEQBUF_MAX]; | 58 | struct ccid2_seq *ccid2hctx_seqbuf[CCID2_SEQBUF_MAX]; |
58 | int ccid2hctx_seqbufc; | 59 | int ccid2hctx_seqbufc; |
59 | struct ccid2_seq *ccid2hctx_seqh; | 60 | struct ccid2_seq *ccid2hctx_seqh; |