diff options
author | David Goulet <dgoulet@torproject.org> | 2017-11-22 09:25:07 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-11-27 10:00:40 -0500 |
commit | 8be50ca3ea90ac04b8a18c7d9a33f5ec3f3a6e28 (patch) | |
tree | 7b0e5452eef6cbcf2eed6969ae4230056272ef60 /src/or/rephist.c | |
parent | 831d3b794da65b03be7e4fd107ba209d7211de76 (diff) | |
download | tor-8be50ca3ea90ac04b8a18c7d9a33f5ec3f3a6e28.tar.gz tor-8be50ca3ea90ac04b8a18c7d9a33f5ec3f3a6e28.zip |
relay: Change bandwidth stats interval to 24 hours
Going from 4 hours to 24 hours in order to try reduce the efficiency of guard
discovery attacks.
Closes #23856
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index cedc56af07..5acc8f3513 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -1131,9 +1131,9 @@ rep_hist_load_mtbf_data(time_t now) * totals? */ #define NUM_SECS_ROLLING_MEASURE 10 /** How large are the intervals for which we track and report bandwidth use? */ -#define NUM_SECS_BW_SUM_INTERVAL (4*60*60) +#define NUM_SECS_BW_SUM_INTERVAL (24*60*60) /** How far in the past do we remember and publish bandwidth use? */ -#define NUM_SECS_BW_SUM_IS_VALID (24*60*60) +#define NUM_SECS_BW_SUM_IS_VALID (5*24*60*60) /** How many bandwidth usage intervals do we remember? (derived) */ #define NUM_TOTALS (NUM_SECS_BW_SUM_IS_VALID/NUM_SECS_BW_SUM_INTERVAL) |