]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
when you expire a wedged dir conn, conn_close_if_marked will take
authorRoger Dingledine <arma@torproject.org>
Tue, 13 Jul 2004 00:38:08 +0000 (00:38 +0000)
committerRoger Dingledine <arma@torproject.org>
Tue, 13 Jul 2004 00:38:08 +0000 (00:38 +0000)
care of trying to flush before it closes

svn:r2035

src/or/main.c

index 77189e62fdf880cbb3496f5b54b7a2c961715d0e..4a6a2703d1e09c8afacd76cb540c5a24546bd68e 100644 (file)
@@ -362,20 +362,7 @@ static void run_connection_housekeeping(int i, time_t now) {
      !conn->marked_for_close &&
      conn->timestamp_lastwritten + 5*60 < now) {
     log_fn(LOG_WARN,"Expiring wedged directory conn (fd %d, purpose %d)", conn->s, conn->purpose);
-    if (connection_wants_to_flush(conn)) {
-      if(flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen) < 0) {
-        log_fn(LOG_WARN,"flushing expired directory conn failed.");
-        connection_close_immediate(conn);
-        connection_mark_for_close(conn);
-        /*  */
-      } else {
-        /* XXXX Does this next part make sense, really? */
-        connection_mark_for_close(conn);
-        conn->hold_open_until_flushed = 1; /* give it a last chance */
-      }
-    } else {
-      connection_mark_for_close(conn);
-    }
+    connection_mark_for_close(conn);
     return;
   }