diff options
author | Fábio J. Bertinatto <fabiojrb@gmail.com> | 2013-11-05 00:50:16 -0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-07 13:36:36 -0400 |
commit | 08ae53e400ff6fa2d8147aad440c38173c106cae (patch) | |
tree | ce9757feb58957dc219407c53205ca75539e2653 /src/or/connection_or.c | |
parent | bc0882c868c0cb61ade0f8b500c4392c889d6d0e (diff) | |
download | tor-08ae53e400ff6fa2d8147aad440c38173c106cae.tar.gz tor-08ae53e400ff6fa2d8147aad440c38173c106cae.zip |
Fix bug9665
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 04ad2cc008..ba3ac00f04 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -1195,6 +1195,11 @@ connection_or_connect(const tor_addr_t *_addr, uint16_t port, "your pluggable transport proxy stopped running.", fmt_addrport(&TO_CONN(conn)->addr, TO_CONN(conn)->port), transport_name, transport_name); + + control_event_bootstrap_problem( + "Can't connect to bridge", + END_OR_CONN_REASON_NO_ROUTE); + } else { log_warn(LD_GENERAL, "Tried to connect to '%s' through a proxy, but " "the proxy address could not be found.", |