diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-02-16 15:15:06 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-02-16 15:15:06 +0000 |
commit | b13496b62adfb3ff7f44b3e9dc5d367d08309c79 (patch) | |
tree | 90e2f0a448d39508ea61b7bc1deef0cfd07c5c1b /src/or/or.h | |
parent | 2d147509d6d1d3641f371728fc79d12ca24d2284 (diff) | |
download | tor-b13496b62adfb3ff7f44b3e9dc5d367d08309c79.tar.gz tor-b13496b62adfb3ff7f44b3e9dc5d367d08309c79.zip |
Possible fix for broken country settings in ExcludeExitNodes.
It turns out that we weren't updating the _ExcludeExitNodesUnion set's
country numbers when we reloaded (or first loaded!) the IP-to-country
file. Spotted by Lark. Bugfix on 0.2.1.6-alpha.
svn:r18575
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 7c191eeaf3..e55d324284 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4514,6 +4514,7 @@ int routerset_equal(const routerset_t *old, const routerset_t *new); void routerset_free(routerset_t *routerset); void routerinfo_set_country(routerinfo_t *ri); void routerlist_refresh_countries(void); +void refresh_all_country_info(void); int hid_serv_get_responsible_directories(smartlist_t *responsible_dirs, const char *id); |