]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
make a note about a clause in connection_edge.c that is probably
authorRoger Dingledine <arma@torproject.org>
Wed, 4 Feb 2009 08:27:36 +0000 (08:27 +0000)
committerRoger Dingledine <arma@torproject.org>
Wed, 4 Feb 2009 08:27:36 +0000 (08:27 +0000)
redundant, and is definitely confusing. we should take it out
in 0.2.2.x and see who squeaks.

svn:r18383

src/or/connection_edge.c

index 3cfac78c3b2ef127872ff3136821bda1dd4d8243..a93cfb06b3111c3b67eb3bb36ab3b31ace76d9b3 100644 (file)
@@ -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,