gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r13441 - in gnunet: . src/util


From: gnunet
Subject: [GNUnet-SVN] r13441 - in gnunet: . src/util
Date: Wed, 27 Oct 2010 22:47:51 +0200

Author: grothoff
Date: 2010-10-27 22:47:51 +0200 (Wed, 27 Oct 2010)
New Revision: 13441

Modified:
   gnunet/RATIONALE
   gnunet/README
   gnunet/src/util/network.c
Log:
fix

Modified: gnunet/RATIONALE
===================================================================
--- gnunet/RATIONALE    2010-10-27 19:23:38 UTC (rev 13440)
+++ gnunet/RATIONALE    2010-10-27 20:47:51 UTC (rev 13441)
@@ -289,6 +289,8 @@
   - bandwidth and time APIs
   - buffered IO API
   - HKDF implementation (crypto)
+  - load calculation API
+  - bandwidth calculation API
 * Major changes in util:
   - more expressive server (replaces selector)
   - DNS lookup replaced by async service

Modified: gnunet/README
===================================================================
--- gnunet/README       2010-10-27 19:23:38 UTC (rev 13440)
+++ gnunet/README       2010-10-27 20:47:51 UTC (rev 13441)
@@ -33,9 +33,9 @@
 - libgcrypt     >= 1.2
 - libcurl       >= 7.21.0
 - libltdl       >= 2.2 (part of GNU libtool)
-- sqlite        >= 3.0 (alternative to MySQL)
+- sqlite        >= 3.0 (default database)
 - mysql         >= 5.1 (alternative to sqLite)
-- postgres      >= ??? (not yet supported)
+- postgres      >= 8.3 (alternative to sqLite)
 
 Recommended autotools for compiling the SVN version are:
 - autoconf >= 2.59
@@ -59,8 +59,8 @@
 GNUnet requires the GNU MP library (http://www.gnu.org/software/gmp/)
 and libgcrypt (http://www.gnupg.org/).  You can specify the path to
 libgcrypt by passing "--with-gcrypt=PATH" to configure.  You will also
-need either sqlite (http://www.sqlite.org/) or MySQL
-(http://www.mysql.org/).
+need either sqlite (http://www.sqlite.org/), MySQL
+(http://www.mysql.org/) or PostGres (http://www.postgres.org/).
 
 If you install from source, you need to install GNU libextractor first
 (download from http://www.gnu.org/software/libextractor/).  We also

Modified: gnunet/src/util/network.c
===================================================================
--- gnunet/src/util/network.c   2010-10-27 19:23:38 UTC (rev 13440)
+++ gnunet/src/util/network.c   2010-10-27 20:47:51 UTC (rev 13441)
@@ -1048,7 +1048,7 @@
 #define SAFE_FD_ISSET(fd, set)  (set != NULL && FD_ISSET(fd, set))
 
   /* calculate how long we need to wait in milliseconds */
-  if (timeout.abs_value == GNUNET_TIME_UNIT_FOREVER_REL.abs_value)
+  if (timeout.abs_value == GNUNET_TIME_UNIT_FOREVER_REL.rel_value)
     ms_total = INFINITE;
 
   else




reply via email to

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