[or-cvs] when you expire a wedged dir conn, conn_close_if_marked wil...
Roger Dingledine
arma at seul.org
Tue Jul 13 00:38:10 UTC 2004
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/or
Modified Files:
main.c
Log Message:
when you expire a wedged dir conn, conn_close_if_marked will take
care of trying to flush before it closes
Index: main.c
===================================================================
RCS file: /home/or/cvsroot/src/or/main.c,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -d -r1.288 -r1.289
--- main.c 4 Jul 2004 22:48:11 -0000 1.288
+++ main.c 13 Jul 2004 00:38:08 -0000 1.289
@@ -362,20 +362,7 @@
!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;
}
More information about the tor-commits
mailing list