From: Roger Dingledine Date: Wed, 7 Apr 2004 19:14:45 +0000 (+0000) Subject: mark a rend circ dirty when you attach to it X-Git-Tag: tor-0.0.6incompat-merged~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f0769c470683acbe267a039e6661f170f020dcf;p=thirdparty%2Ftor.git mark a rend circ dirty when you attach to it svn:r1518 --- diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index a543e22e70..23c9c9d5d3 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -915,11 +915,14 @@ int connection_ap_handshake_attach_circuit(connection_t *conn) { rendcirc->purpose == CIRCUIT_PURPOSE_C_REND_READY) { /* then we know !pending_final_cpath, from above */ log_fn(LOG_INFO,"intro and rend circs are both ready. introducing."); + /* this call marks introcirc for close */ if(rend_client_send_introduction(introcirc, rendcirc) < 0) { return -1; } /* now attach conn to rendcirc */ link_apconn_to_circ(conn, rendcirc); + if(!rendcirc->timestamp_dirty) + rendcirc->timestamp_dirty = time(NULL); return 1; } }