From 9c9fa9702688a45e30de90cd75f8d7fc466dc412 Mon Sep 17 00:00:00 2001 From: "Nathan S. Evans" Date: Mon, 24 Jan 2011 15:49:50 +0000 Subject: [PATCH] larger bloom filter --- src/dht/gnunet-dht-driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dht/gnunet-dht-driver.c b/src/dht/gnunet-dht-driver.c index cae9bb3db..1978d1caf 100644 --- a/src/dht/gnunet-dht-driver.c +++ b/src/dht/gnunet-dht-driver.c @@ -3077,7 +3077,7 @@ run (void *cls, } /* Create the bloomfilter for choosing which peers to set malicious */ - malicious_bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K); + malicious_bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE * 10, DHT_BLOOM_K); /* The normal behavior of the DHT is to do find peer requests * on its own. Only if this is explicitly turned off should -- 2.25.1