diff options
author | Andrea Bittau <a.bittau@cs.ucl.ac.uk> | 2006-11-16 16:28:40 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 05:23:52 (GMT) |
commit | 32aac18dfa0963fde40cc074ba97ebbae8b755f2 (patch) | |
tree | c6851e77f1af7e7ef614e7e0a3bde630d57cf776 /net/dccp/ccids/ccid2.h | |
parent | 58a5a7b9555ea231b557ebef5cabeaf8e951df0b (diff) | |
download | linux-32aac18dfa0963fde40cc074ba97ebbae8b755f2.tar.xz |
[DCCP] CCID2: Code optimizations
These are code optimizations which are relevant when dealing with large
windows. They are not coded the way I would like to, but they do the job for
the short-term. This patch should be more neat.
Commiter note: Changed the seqno comparisions to use {after,before}48 to handle
wrapping.
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/ccid2.h')
-rw-r--r-- | net/dccp/ccids/ccid2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dccp/ccids/ccid2.h b/net/dccp/ccids/ccid2.h index 5b2ef4a..a97a899 100644 --- a/net/dccp/ccids/ccid2.h +++ b/net/dccp/ccids/ccid2.h @@ -72,6 +72,7 @@ struct ccid2_hc_tx_sock { int ccid2hctx_rpdupack; int ccid2hctx_sendwait; unsigned long ccid2hctx_last_cong; + u64 ccid2hctx_high_ack; }; struct ccid2_hc_rx_sock { |