Add a log message to try to track down #16013

This commit is contained in:
Nick Mathewson 2015-06-11 09:55:47 -04:00
parent 09895d48c6
commit aab7d666cd

View File

@ -1843,6 +1843,12 @@ circuit_get_open_circ_or_launch(entry_connection_t *conn,
tor_assert(conn);
tor_assert(circp);
if (ENTRY_TO_CONN(conn)->state != AP_CONN_STATE_CIRCUIT_WAIT) {
connection_t *c = ENTRY_TO_CONN(conn);
log_err(LD_BUG, "Connection state mismatch: wanted "
"AP_CONN_STATE_CIRCUIT_WAIT, but got %d (%s)",
c->state, conn_state_to_string(c->type, c->state));
}
tor_assert(ENTRY_TO_CONN(conn)->state == AP_CONN_STATE_CIRCUIT_WAIT);
check_exit_policy =
conn->socks_request->command == SOCKS_COMMAND_CONNECT &&