diff options
author | Roger Dingledine <arma@torproject.org> | 2004-01-11 07:41:01 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-01-11 07:41:01 +0000 |
commit | b669b1d57c62c7466bcbc5bdead0508dd0a27472 (patch) | |
tree | 1b490b17ab780430f7a6587f303a542e8090faf1 /src/or/routerlist.c | |
parent | 1a137c266ad979aae1c5a934cce1404b03b6447e (diff) | |
download | tor-b669b1d57c62c7466bcbc5bdead0508dd0a27472.tar.gz tor-b669b1d57c62c7466bcbc5bdead0508dd0a27472.zip |
oh, and make it compile
still need to make a decision about per-connection rate limiting
(take it out? update it?)
svn:r984
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 81de16c406..f4eeb29e05 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -752,9 +752,9 @@ routerinfo_t *router_get_entry_from_string(const char**s) { router->bandwidthburst = 10*router->bandwidthrate; #endif - log_fn(LOG_DEBUG,"or_port %d, socks_port %d, dir_port %d, bandwidth %u.", + log_fn(LOG_DEBUG,"or_port %d, socks_port %d, dir_port %d, bandwidthrate %u, bandwidthburst %u.", router->or_port, router->socks_port, router->dir_port, - (unsigned) router->bandwidth); + (unsigned) router->bandwidthrate, (unsigned) router->bandwidthburst); /* XXX Later, require platform before published. */ NEXT_TOKEN(); |