From: Roger Dingledine Date: Thu, 24 Mar 2005 06:28:21 +0000 (+0000) Subject: when you attachstream to a circid of 0, send back an answer X-Git-Tag: tor-0.1.0.1-rc~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa3c9d94bcd6c0ae9df09ea13953fbed9fd4c73d;p=thirdparty%2Ftor.git when you attachstream to a circid of 0, send back an answer svn:r3857 --- diff --git a/src/or/control.c b/src/or/control.c index 47c0cc0e68..15c8bfe1ea 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -737,7 +737,7 @@ static int handle_control_attachstream(connection_t *conn, uint32_t len, ap_conn->state = AP_CONN_STATE_CIRCUIT_WAIT; if (connection_ap_handshake_attach_circuit(ap_conn)<0) connection_mark_for_close(ap_conn); - + send_control_done(conn); return 0; }