diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-15 04:57:36 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-15 04:57:36 +0000 |
commit | 88e0c080cf5493e2841a392f77daeef3db6a289d (patch) | |
tree | e8ad4382a7320dcf27647fe42bc0487b79e5e593 /src/or/or.h | |
parent | 5e80944c52ae8abb43a446272f202d8a7d8af083 (diff) | |
download | tor-88e0c080cf5493e2841a392f77daeef3db6a289d.tar.gz tor-88e0c080cf5493e2841a392f77daeef3db6a289d.zip |
Ignore fascistfirewall when dealing with service descriptors; obey fascistfirewall when posting server descriptors; ignore fascistfirewall on directory connections when httpproxy is set.
svn:r2527
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 080d9aaaed..1fe05447da 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1412,8 +1412,8 @@ typedef struct trusted_dir_server_t { } trusted_dir_server_t; int router_reload_router_list(void); -routerinfo_t *router_pick_directory_server(int requireothers); -trusted_dir_server_t *router_pick_trusteddirserver(int requireothers); +routerinfo_t *router_pick_directory_server(int requireothers, int fascistfirewall); +trusted_dir_server_t *router_pick_trusteddirserver(int requireothers, int fascistfirewall); int all_trusted_directory_servers_down(void); struct smartlist_t; void routerlist_add_family(struct smartlist_t *sl, routerinfo_t *router); |