mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 15:43:32 +01:00
Fix a false assertion when extending a circuit to a relay to which a connection is already established. In that case the circuit should not need to memorize extend info for that relay. circuitbuild.c:389 contains a similar assertion.
svn:r16375
This commit is contained in:
parent
449174d796
commit
3c9cd463d2
@ -33,7 +33,7 @@ Changes in version 0.2.1.3-alpha - 2008-08-03
|
|||||||
- Change the implementation of ExcludeNodes and ExcludeExitNodes to
|
- Change the implementation of ExcludeNodes and ExcludeExitNodes to
|
||||||
be more efficient. Formerly it was quadratic in the number of
|
be more efficient. Formerly it was quadratic in the number of
|
||||||
servers; now it should be linear. Fixes bug 509.
|
servers; now it should be linear. Fixes bug 509.
|
||||||
- Save 16-22 bytes per open circuit by moving the n_hop, n_port,
|
- Save 16-22 bytes per open circuit by moving the n_addr, n_port,
|
||||||
and n_conn_id_digest fields into a separate structure that's
|
and n_conn_id_digest fields into a separate structure that's
|
||||||
only needed when the circuit has not yet attached to an n_conn.
|
only needed when the circuit has not yet attached to an n_conn.
|
||||||
|
|
||||||
|
@ -791,7 +791,7 @@ circuit_extend(cell_t *cell, circuit_t *circ)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tor_assert(circ->n_hop);
|
tor_assert(!circ->n_hop); /* Connection is already established. */
|
||||||
circ->n_conn = n_conn;
|
circ->n_conn = n_conn;
|
||||||
log_debug(LD_CIRC,"n_conn is %s:%u",
|
log_debug(LD_CIRC,"n_conn is %s:%u",
|
||||||
n_conn->_base.address,n_conn->_base.port);
|
n_conn->_base.address,n_conn->_base.port);
|
||||||
|
@ -1784,7 +1784,7 @@ typedef struct circuit_t {
|
|||||||
circid_t n_circ_id;
|
circid_t n_circ_id;
|
||||||
|
|
||||||
/** The hop to which we want to extend this ciruit. Should be NULL if
|
/** The hop to which we want to extend this ciruit. Should be NULL if
|
||||||
* the */
|
* the circuit has attached to a connection. */
|
||||||
extend_info_t *n_hop;
|
extend_info_t *n_hop;
|
||||||
|
|
||||||
/** True iff we are waiting for n_conn_cells to become less full before
|
/** True iff we are waiting for n_conn_cells to become less full before
|
||||||
|
Loading…
Reference in New Issue
Block a user