summaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-01-11 07:41:01 +0000
committerRoger Dingledine <arma@torproject.org>2004-01-11 07:41:01 +0000
commitb669b1d57c62c7466bcbc5bdead0508dd0a27472 (patch)
tree1b490b17ab780430f7a6587f303a542e8090faf1 /src/or/routerlist.c
parent1a137c266ad979aae1c5a934cce1404b03b6447e (diff)
downloadtor-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.c4
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();