[or-cvs] the socketpair bug is no longer a bug

Roger Dingledine arma at seul.org
Mon Apr 19 21:25:50 UTC 2004


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

Modified Files:
	connection_edge.c 
Log Message:
the socketpair bug is no longer a bug
now it is a documented behavior


Index: connection_edge.c
===================================================================
RCS file: /home/or/cvsroot/src/or/connection_edge.c,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- connection_edge.c	18 Apr 2004 09:04:37 -0000	1.175
+++ connection_edge.c	19 Apr 2004 21:25:48 -0000	1.176
@@ -1061,7 +1061,7 @@
   log_fn(LOG_INFO,"Making AP bridge to %s:%d ...",address,port);
 
   if(tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) {
-    log(LOG_WARN, "Couldn't construct socketpair (we're still working on this bug): %s", strerror(errno));
+    log(LOG_WARN, "Couldn't construct socketpair (%s). Network down? Delaying.", strerror(errno));
     return -1;
   }
 



More information about the tor-commits mailing list