diff options
| author | Gerrit Renker <[email protected]> | 2007-11-25 00:04:35 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-01-28 22:54:57 +0000 |
| commit | 63df18ad7fb91c65dafc89d3cf94a58a486ad416 (patch) | |
| tree | 63172fb7125c990516430ef8b4e50648079d89fd /net/dccp/ccids/ccid2.h | |
| parent | [CCID2]: Remove unused variable (diff) | |
| download | kernel-63df18ad7fb91c65dafc89d3cf94a58a486ad416.tar.gz kernel-63df18ad7fb91c65dafc89d3cf94a58a486ad416.zip | |
[CCID2]: Replace read-only variable with constant
This replaces the field member `numdupack', which was used as a read-only
constant in the code, with a #define.
Signed-off-by: Gerrit Renker <[email protected]>
Signed-off-by: Ian McDonald <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
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 6d0b4e32b161..443f08a667a2 100644 --- a/net/dccp/ccids/ccid2.h +++ b/net/dccp/ccids/ccid2.h @@ -24,6 +24,8 @@ #include <linux/timer.h> #include <linux/types.h> #include "../ccid.h" +/* NUMDUPACK parameter from RFC 4341, p. 6 */ +#define NUMDUPACK 3 struct sock; @@ -52,7 +54,6 @@ struct ccid2_hc_tx_sock { int ccid2hctx_acks; unsigned int ccid2hctx_ssthresh; int ccid2hctx_pipe; - int ccid2hctx_numdupack; struct ccid2_seq *ccid2hctx_seqbuf[CCID2_SEQBUF_MAX]; int ccid2hctx_seqbufc; struct ccid2_seq *ccid2hctx_seqh; |
