diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-07 05:27:34 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-07 05:27:34 +0000 |
commit | 5aeb89447ef1683477f2ac22c91cba5f6444557d (patch) | |
tree | 27dc2a94cd2b6d3e63f9a1049d3d78af7953128e /src/or/connection_or.c | |
parent | 9b626988a67647a60a420d81a95a889ea31ac666 (diff) | |
download | tor-5aeb89447ef1683477f2ac22c91cba5f6444557d.tar.gz tor-5aeb89447ef1683477f2ac22c91cba5f6444557d.zip |
infrastructure for the 'bootstrap status event' feature, so we can
tell the controller how we're doing at bootstrapping, and it can
tell the user.
svn:r15008
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index cdc71bbd89..f9dd28de31 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -344,6 +344,7 @@ connection_or_finished_connecting(or_connection_t *or_conn) log_debug(LD_OR,"OR connect() to router at %s:%u finished.", conn->address,conn->port); + control_event_bootstrap(BOOTSTRAP_STATUS_HANDSHAKE, 0); if (get_options()->HttpsProxy) { char buf[1024]; |