diff options
author | Roger Dingledine <arma@torproject.org> | 2009-02-04 08:27:36 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-02-04 08:27:36 +0000 |
commit | 45aeabf8f724cd2aba5c5262f9f7e19b86cbaf3a (patch) | |
tree | 800d0230f74fe3647fc3355da52e542b6aef54c6 /src/or | |
parent | 893479b8b3b5329fa161274bae68a73277b1090c (diff) | |
download | tor-45aeabf8f724cd2aba5c5262f9f7e19b86cbaf3a.tar.gz tor-45aeabf8f724cd2aba5c5262f9f7e19b86cbaf3a.zip |
make a note about a clause in connection_edge.c that is probably
redundant, and is definitely confusing. we should take it out
in 0.2.2.x and see who squeaks.
svn:r18383
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 3cfac78c3b..a93cfb06b3 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -409,6 +409,8 @@ connection_ap_expire_beginning(void) ? LOG_INFO : LOG_NOTICE; seconds_idle = (int)( now - conn->_base.timestamp_lastread ); + /* XXX022 this clause may be redundant with the clause in + * connection_ap_handshake_attach_circuit(). Is it? -RD */ if (AP_CONN_STATE_IS_UNATTACHED(conn->_base.state)) { if (seconds_idle >= options->SocksTimeout) { log_fn(severity, LD_APP, |