]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
leave conn->socks_request around after the begin
authorRoger Dingledine <arma@torproject.org>
Tue, 11 Nov 2003 06:42:10 +0000 (06:42 +0000)
committerRoger Dingledine <arma@torproject.org>
Tue, 11 Nov 2003 06:42:10 +0000 (06:42 +0000)
that way we can reuse it if we need to try another begin later

svn:r788

src/or/connection_edge.c

index c92ab1fbf5544d4986750311c21b130e17388120..bf6a7b435bdd54feb2245d53f8bf7956e6149816 100644 (file)
@@ -624,7 +624,6 @@ static int connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *
   ap_conn->package_window = STREAMWINDOW_START;
   ap_conn->deliver_window = STREAMWINDOW_START;
   ap_conn->state = AP_CONN_STATE_OPEN;
-  tor_free(ap_conn->socks_request); /* this also NULLs it out */
   log_fn(LOG_INFO,"Address/port sent, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
   return 0;
 }