diff options
author | Roger Dingledine <arma@torproject.org> | 2007-05-25 18:40:09 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-05-25 18:40:09 +0000 |
commit | ce59d5a632d159a1f72605674dd034d58a1ad665 (patch) | |
tree | 86ce5644196f71ada678de5a91716b402c656b9a | |
parent | 6e216ed7ef9818a092f74fb7751a5b6ebe7c3307 (diff) | |
download | tor-ce59d5a632d159a1f72605674dd034d58a1ad665.tar tor-ce59d5a632d159a1f72605674dd034d58a1ad665.tar.gz |
also change purpose_is_private to purpose_needs_anonymity
svn:r10331
-rw-r--r-- | src/or/directory.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index dd877ae3a..2e62edd3a 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -36,7 +36,7 @@ directory_send_command(dir_connection_t *conn, const char *payload, size_t payload_len); static int directory_handle_command(dir_connection_t *conn); static int body_is_plausible(const char *body, size_t body_len, int purpose); -static int purpose_is_private(uint8_t purpose); +static int purpose_needs_anonymity(uint8_t purpose); static char *http_get_header(const char *headers, const char *which); static void http_set_address_origin(const char *headers, connection_t *conn); static void connection_dir_download_networkstatus_failed( @@ -71,7 +71,7 @@ static void note_request(const char *key, size_t bytes); /** Return true iff the directory purpose 'purpose' must use an * anonymous connection to a directory. */ static int -purpose_is_private(uint8_t purpose) +purpose_needs_anonymity(uint8_t purpose) { if (get_options()->AllDirActionsPrivate) return 1; @@ -169,7 +169,7 @@ directory_post_to_dirservers(uint8_t purpose, authority_type_t type, log_info(LD_DIR, "Uploading an extrainfo (length %d)", (int) extrainfo_len); } - post_via_tor = purpose_is_private(purpose) || + post_via_tor = purpose_needs_anonymity(purpose) || !fascist_firewall_allows_address_dir(ds->addr, ds->dir_port); directory_initiate_command_routerstatus(rs, purpose, post_via_tor, NULL, payload, upload_len); @@ -194,7 +194,7 @@ directory_get_from_dirserver(uint8_t purpose, const char *resource, routerstatus_t *rs = NULL; or_options_t *options = get_options(); int prefer_authority = server_mode(options) && options->DirPort != 0; - int directconn = !purpose_is_private(purpose); + int directconn = !purpose_needs_anonymity(purpose); authority_type_t type; /* FFFF we could break this switch into its own function, and call @@ -276,7 +276,7 @@ directory_get_from_dirserver(uint8_t purpose, const char *resource, "While fetching directory info, " "no running dirservers known. Will try again later. " "(purpose %d)", purpose); - if (!purpose_is_private(purpose)) { + if (!purpose_needs_anonymity(purpose)) { /* remember we tried them all and failed. */ directory_all_unreachable(time(NULL)); } |