aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@mandriva.com>2005-09-09 01:37:05 -0400
committerArnaldo Carvalho de Melo <acme@mandriva.com>2005-09-09 01:37:05 -0400
commit954ee31f366fabe53fb450482789258fe552f40b (patch)
tree9118ac57a87aefdbb20a02366cc96a70c9ca2b10 /net
parentb3a3077d963fc54a25be26e2e84fe9f4327c1e12 (diff)
[CCID3] Initialize more fields in ccid3_hc_rx_init
The initialization of ccid3hcrx_rtt to 5ms is just a bandaid, I'll continue auditing the CCID3 HC rx codebase to fix this properly, probably I'll add a feedback timer as suggested in the CCID3 draft. Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net')
-rw-r--r--net/dccp/ccids/ccid3.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 0804b3e435c8..145aafafe4e2 100644
--- a/net/dccp/ccids/ccid3.c
+++ b/net/dccp/ccids/ccid3.c
@@ -1100,11 +1100,9 @@ static int ccid3_hc_rx_init(struct sock *sk)
1100 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA; 1100 hcrx->ccid3hcrx_state = TFRC_RSTATE_NO_DATA;
1101 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist); 1101 INIT_LIST_HEAD(&hcrx->ccid3hcrx_hist);
1102 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist); 1102 INIT_LIST_HEAD(&hcrx->ccid3hcrx_li_hist);
1103 /* 1103 do_gettimeofday(&hcrx->ccid3hcrx_tstamp_last_ack);
1104 * XXX this seems to be paranoid, need to think more about this, for 1104 hcrx->ccid3hcrx_tstamp_last_feedback = hcrx->ccid3hcrx_tstamp_last_ack;
1105 * now start with something different than zero. -acme 1105 hcrx->ccid3hcrx_rtt = 5000; /* XXX 5ms for now... */
1106 */
1107 hcrx->ccid3hcrx_rtt = USEC_PER_SEC / 5;
1108 return 0; 1106 return 0;
1109} 1107}
1110 1108