diff options
author | Roger Dingledine <arma@torproject.org> | 2006-07-18 00:59:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-07-18 00:59:46 +0000 |
commit | 388ac4126a1fbd95dec063eec2740bb7ebf1cfa3 (patch) | |
tree | 46a5cfee345f134d603c99fd39c23c5d7a1cc92e /src/or/connection_edge.c | |
parent | a8444c6f53b22387ee86c50e899fd04b6f826659 (diff) | |
download | tor-388ac4126a1fbd95dec063eec2740bb7ebf1cfa3.tar.gz tor-388ac4126a1fbd95dec063eec2740bb7ebf1cfa3.zip |
If we are using an exit enclave and we can't connect, e.g. because
its webserver is misconfigured to not listen on localhost, then back
off and try connecting from somewhere else before we fail.
svn:r6783
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 41948e055c..45620e2a3b 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1126,6 +1126,7 @@ connection_ap_handshake_rewrite_and_attach(connection_t *conn, routers with this nickname */ conn->chosen_exit_name = tor_strdup(hex_str(r->cache_info.identity_digest, DIGEST_LEN)); + conn->chosen_exit_optional = 1; } } |