diff options
author | Roger Dingledine <arma@torproject.org> | 2012-10-22 15:45:39 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-10-23 17:18:01 -0400 |
commit | 2ecee3fce2179c6fe9f9c748522e417b887ee021 (patch) | |
tree | 0364cd0f3303c51e0621f4047d966510c23a3d99 /src/or/policies.c | |
parent | 85659d3964669f9f419123c648e517f4ba539462 (diff) | |
download | tor-2ecee3fce2179c6fe9f9c748522e417b887ee021.tar.gz tor-2ecee3fce2179c6fe9f9c748522e417b887ee021.zip |
Let 0.2.3 clients exit to internal addresses if they want
Clients now consider the ClientRejectInternalAddresses config option
when using a microdescriptor consensus stanza to decide whether
an exit relay would allow exiting to an internal address. Fixes
bug 7190; bugfix on 0.2.3.1-alpha.
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index bbd6816ffc..81e4809687 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -1462,15 +1462,14 @@ compare_tor_addr_to_short_policy(const tor_addr_t *addr, uint16_t port, int i; int found_match = 0; int accept; - (void)addr; tor_assert(port != 0); if (addr && tor_addr_is_null(addr)) addr = NULL; /* Unspec means 'no address at all,' in this context. */ - if (addr && (tor_addr_is_internal(addr, 0) || - tor_addr_is_loopback(addr))) + if (addr && get_options()->ClientRejectInternalAddresses && + (tor_addr_is_internal(addr, 0) || tor_addr_is_loopback(addr))) return ADDR_POLICY_REJECTED; for (i=0; i < policy->n_entries; ++i) { |