Browse Source

when you attachstream to a circid of 0, send back an answer

svn:r3857
Roger Dingledine 20 years ago
parent
commit
fa3c9d94bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/control.c

+ 1 - 1
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;
   }