gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r16788 - gnunet/src/dht


From: gnunet
Subject: [GNUnet-SVN] r16788 - gnunet/src/dht
Date: Tue, 13 Sep 2011 12:18:03 +0200

Author: grothoff
Date: 2011-09-13 12:18:03 +0200 (Tue, 13 Sep 2011)
New Revision: 16788

Modified:
   gnunet/src/dht/gnunet-service-dht.c
Log:
options should be plain 'int'

Modified: gnunet/src/dht/gnunet-service-dht.c
===================================================================
--- gnunet/src/dht/gnunet-service-dht.c 2011-09-13 10:17:17 UTC (rev 16787)
+++ gnunet/src/dht/gnunet-service-dht.c 2011-09-13 10:18:03 UTC (rev 16788)
@@ -682,48 +682,48 @@
  * to closest peer; initially send requests to 3
  * peers.
  */
-static unsigned int strict_kademlia;
+static int strict_kademlia;
 
 /**
  * Routing option to end routing when closest peer found.
  */
-static unsigned int stop_on_closest;
+static int stop_on_closest;
 
 /**
  * Routing option to end routing when data is found.
  */
-static unsigned int stop_on_found;
+static int stop_on_found;
 
 /**
  * Whether DHT needs to manage find peer requests, or
  * an external force will do it on behalf of the DHT.
  */
-static unsigned int do_find_peer;
+static int do_find_peer;
 
 /**
  * Once we have stored an item in the DHT, refresh it
  * according to our republish interval.
  */
-static unsigned int do_republish;
+static int do_republish;
 
 /**
  * Use exactly the forwarding formula as described in
  * the paper if set to GNUNET_YES, otherwise use the
  * slightly modified version.
  */
-static unsigned int paper_forwarding;
+static int paper_forwarding;
 
 /**
  * PUT Peer Identities of peers we know about into
  * the datacache.
  */
-static unsigned int put_peer_identities;
+static int put_peer_identities;
 
 /**
  * Use the "real" distance metric when selecting the
  * next routing hop.  Can be less accurate.
  */
-static unsigned int use_real_distance;
+static int use_real_distance;
 
 /**
  * How many peers have we added since we sent out our last




reply via email to

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