From 7fbb9e8eaf06fa4ca3219832c5e6016be7f4c8b6 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 13 Sep 2011 10:18:03 +0000 Subject: options should be plain 'int' --- src/dht/gnunet-service-dht.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/dht/gnunet-service-dht.c b/src/dht/gnunet-service-dht.c index 4b61ec67b..6579f0726 100644 --- a/src/dht/gnunet-service-dht.c +++ b/src/dht/gnunet-service-dht.c @@ -682,48 +682,48 @@ static struct FindPeerMessageContext find_peer_context; * 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 -- cgit v1.2.3