[or-cvs] give up trying to track down the reason we"re calling packa...

Roger Dingledine arma at seul.org
Fri Nov 26 03:43:57 UTC 2004


Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or

Modified Files:
	relay.c 
Log Message:
give up trying to track down the reason we're calling package_inbuf
with a package window of 0. it's safe to just catch the error cases
there and do the right thing.


Index: relay.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/relay.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- relay.c	21 Nov 2004 11:20:28 -0000	1.24
+++ relay.c	26 Nov 2004 03:43:54 -0000	1.25
@@ -879,7 +879,7 @@
     return 0;
 
   if(conn->package_window <= 0) {
-    log_fn(LOG_WARN,"called with package_window %d. Tell Roger.", conn->package_window);
+    log_fn(LOG_INFO,"called with package_window %d. Skipping.", conn->package_window);
     connection_stop_reading(conn);
     return 0;
   }



More information about the tor-commits mailing list