diff options
author | Andrea Bittau <a.bittau@cs.ucl.ac.uk> | 2006-11-26 04:07:50 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 06:30:34 +0100 |
commit | 6472c051fcc5e571a9abee7f7a1ac58cc6e7bafa (patch) | |
tree | 85060704f370434b82e29270ef17f67eb9ff22f7 /net/dccp/ccids | |
parent | [DCCP] ackvec: Split long ack vectors across multiple options (diff) | |
download | linux-6472c051fcc5e571a9abee7f7a1ac58cc6e7bafa.tar.xz linux-6472c051fcc5e571a9abee7f7a1ac58cc6e7bafa.zip |
[DCCP] ccid2: Allow window to grow larger
Now that we can stuff bigger ack vectors into options.
Signed-off-by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r-- | net/dccp/ccids/ccid2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h index a97a89927308..ebd79499c85a 100644 --- a/net/dccp/ccids/ccid2.h +++ b/net/dccp/ccids/ccid2.h @@ -35,7 +35,7 @@ struct ccid2_seq { struct ccid2_seq *ccid2s_next; }; -#define CCID2_SEQBUF_LEN 256 +#define CCID2_SEQBUF_LEN 1024 #define CCID2_SEQBUF_MAX 128 /** struct ccid2_hc_tx_sock - CCID2 TX half connection |