diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-12-29 20:49:47 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-12-29 20:49:47 +0000 |
commit | 7ee99ba342bea0e232df3f624939688bce084809 (patch) | |
tree | 403a9b010121d86ea238e4d698641f706cedb150 /src | |
parent | e3d5e4fcae54adc1314521895b6cd1a8a4b6b267 (diff) | |
download | tor-7ee99ba342bea0e232df3f624939688bce084809.tar.gz tor-7ee99ba342bea0e232df3f624939688bce084809.zip |
r11759@Kushana: nickm | 2006-12-29 15:21:14 -0500
Actually, handle_getinfo_helper supports 552 results just fine: just leave *answer unset.
svn:r9217
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerlist.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index fe462e3ec4..92ae7da9e9 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1031,7 +1031,7 @@ router_choose_random_node(const char *preferred, smartlist_subtract(sl,excludedsmartlist); routerlist_sl_remove_unreliable_routers(sl, need_uptime, need_capacity, need_guard); - if (need_capacity) /* XXXX012 Is this documented in path spec. -NM */ + if (need_capacity) choice = routerlist_sl_choose_by_bandwidth(sl, weight_for_exit); else choice = smartlist_choose(sl); @@ -4208,10 +4208,6 @@ getinfo_helper_networkstatus(control_connection_t *conn, if (status) { *answer = networkstatus_getinfo_helper_single(&status->status); - } else { - *answer = tor_strdup(""); - /* XXXX012 this should return a 552, not a 250; but handle_getinfo_helper() - * isn't set up to handle that. That should be fixed too. :) -RD */ } return 0; } |