]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
set rend exit connection state _before_ calling rend_service_set_connection_addr_port...
authorNick Mathewson <nickm@torproject.org>
Fri, 9 Apr 2004 17:51:57 +0000 (17:51 +0000)
committerNick Mathewson <nickm@torproject.org>
Fri, 9 Apr 2004 17:51:57 +0000 (17:51 +0000)
svn:r1579

src/or/connection_edge.c

index f99da535c06c154028a2b08c3ccb956fb2158924..e0cd9c85dba7d5fa417e20e7dbf7cfc95bcd1ba1 100644 (file)
@@ -1134,13 +1134,13 @@ static int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
 
   if(circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) {
     n_stream->address = tor_strdup("(rendezvous)");
+    n_stream->state = EXIT_CONN_STATE_CONNECTING;
     strcpy(n_stream->rend_query, circ->rend_query);
     if(rend_service_set_connection_addr_port(n_stream, circ) < 0) {
       log_fn(LOG_WARN,"Didn't find rendezvous service (port %d)",n_stream->port);
       connection_mark_for_close(n_stream,0 /* XXX */);
       return 0;
     }
-    n_stream->state = EXIT_CONN_STATE_CONNECTING;
     n_stream->cpath_layer = circ->cpath->prev; /* link it */
     connection_exit_connect(n_stream);
     return 0;