diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-08-07 02:46:16 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-08-07 02:46:16 +0000 |
commit | f6cc21874243b4d84a2db212e5c66058365bd7e7 (patch) | |
tree | edde9db07ea5ff6a3f28591302fea7caac8388f9 /src/or/main.c | |
parent | f47fe829dd722b502a186b9c437cf8f57bf55405 (diff) | |
download | tor-f6cc21874243b4d84a2db212e5c66058365bd7e7.tar.gz tor-f6cc21874243b4d84a2db212e5c66058365bd7e7.zip |
Refactor ISO-style (yyyy-mm-dd hh:mm:ss) time parsing into util.c; rename format/parse_rfc1123_time; make rephist remember used bandwidth; published used bandwidth in descriptors in 15-minute chunks. Breaks unittests.
svn:r2182
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 2ebd02a914..93f6c239eb 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -418,7 +418,7 @@ static void run_connection_housekeeping(int i, time_t now) { static int decide_if_publishable_server(time_t now) { int bw; - bw = rep_hist_bandwidth_assess(now); + bw = rep_hist_bandwidth_assess(); router_set_advertised_bandwidth(bw); if(options.ClientOnly) |