also demultiplex everywhere on put
authorChristian Grothoff <christian@grothoff.org>
Thu, 29 Sep 2011 23:24:07 +0000 (23:24 +0000)
committerChristian Grothoff <christian@grothoff.org>
Thu, 29 Sep 2011 23:24:07 +0000 (23:24 +0000)
src/fs/gnunet-service-fs_put.c

index 4910144d1985ab18d2f08285c584e8abb49df3bc..c029b4141a79d21ada33e5526aecea773e2102a3 100644 (file)
@@ -161,7 +161,8 @@ process_dht_put_content (void *cls, const GNUNET_HashCode * key, size_t size,
               "Retrieved block `%s' of type %u for DHT PUT\n", GNUNET_h2s (key),
               type);
 #endif
-  GNUNET_DHT_put (GSF_dht, key, 5 /* DEFAULT_PUT_REPLICATION */, GNUNET_DHT_RO_NONE,
+  GNUNET_DHT_put (GSF_dht, key, 5 /* DEFAULT_PUT_REPLICATION */, 
+                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
                   type, size, data, expiration, GNUNET_TIME_UNIT_FOREVER_REL,
                   &delay_dht_put_blocks, po);
 }