[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] more details when a conn is closed before it"s done flushing
- To: or-cvs@freehaven.net
- Subject: [or-cvs] more details when a conn is closed before it"s done flushing
- From: arma@seul.org (Roger Dingledine)
- Date: Fri, 12 Mar 2004 03:16:51 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Fri, 12 Mar 2004 03:17:14 -0500
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
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:
more details when a conn is closed before it's done flushing
Index: main.c
===================================================================
RCS file: /home/or/cvsroot/src/or/main.c,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -d -r1.199 -r1.200
--- main.c 11 Mar 2004 20:15:53 -0000 1.199
+++ main.c 12 Mar 2004 08:16:48 -0000 1.200
@@ -260,8 +260,10 @@
return;
}
if(connection_wants_to_flush(conn)) {
- log_fn(LOG_WARN,"Conn (fd %d) still wants to flush. Losing %d bytes!",
- conn->s, (int)buf_datalen(conn->outbuf));
+ log_fn(LOG_WARN,"Conn (fd %d, type %s, state %d) still wants to flush. Losing %d bytes! (Marked at %s:%d)",
+ conn->s, CONN_TYPE_TO_STRING(conn->type), conn->state,
+ (int)buf_datalen(conn->outbuf), conn->marked_for_close_file,
+ conn->marked_for_close);
}
}
connection_remove(conn);