gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r5079 - GNUnet/src/applications/bootstrap_http


From: gnunet
Subject: [GNUnet-SVN] r5079 - GNUnet/src/applications/bootstrap_http
Date: Sat, 16 Jun 2007 00:05:38 -0600 (MDT)

Author: grothoff
Date: 2007-06-16 00:05:36 -0600 (Sat, 16 Jun 2007)
New Revision: 5079

Modified:
   GNUnet/src/applications/bootstrap_http/http.c
Log:
curl requires small select timeout

Modified: GNUnet/src/applications/bootstrap_http/http.c
===================================================================
--- GNUnet/src/applications/bootstrap_http/http.c       2007-06-16 05:28:11 UTC 
(rev 5078)
+++ GNUnet/src/applications/bootstrap_http/http.c       2007-06-16 06:05:36 UTC 
(rev 5079)
@@ -297,8 +297,8 @@
     /* use timeout of 1s in case that SELECT is not interrupted by
        signal (just to increase portability a bit) -- better a 1s
        delay in the reaction than hanging... */
-    tv.tv_sec = 1;
-    tv.tv_usec = 0;
+    tv.tv_sec = 0;
+    tv.tv_usec = 1000;
     SELECT(max + 1,
           &rs,
           &ws,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]