aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-09-29 23:24:07 +0000
committerChristian Grothoff <christian@grothoff.org>2011-09-29 23:24:07 +0000
commit2f272690e172d29138a10e4031c9325ab298eb45 (patch)
tree963a44520105780d0126ebb1fc43f9dfca787d9f /src/fs
parent7cf917fadf26d0e69bac1259b8b9585eb24c7b96 (diff)
downloadgnunet-2f272690e172d29138a10e4031c9325ab298eb45.tar.gz
gnunet-2f272690e172d29138a10e4031c9325ab298eb45.zip
also demultiplex everywhere on put
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-service-fs_put.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fs/gnunet-service-fs_put.c b/src/fs/gnunet-service-fs_put.c
index 4910144d1..c029b4141 100644
--- a/src/fs/gnunet-service-fs_put.c
+++ b/src/fs/gnunet-service-fs_put.c
@@ -161,7 +161,8 @@ process_dht_put_content (void *cls, const GNUNET_HashCode * key, size_t size,
161 "Retrieved block `%s' of type %u for DHT PUT\n", GNUNET_h2s (key), 161 "Retrieved block `%s' of type %u for DHT PUT\n", GNUNET_h2s (key),
162 type); 162 type);
163#endif 163#endif
164 GNUNET_DHT_put (GSF_dht, key, 5 /* DEFAULT_PUT_REPLICATION */, GNUNET_DHT_RO_NONE, 164 GNUNET_DHT_put (GSF_dht, key, 5 /* DEFAULT_PUT_REPLICATION */,
165 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
165 type, size, data, expiration, GNUNET_TIME_UNIT_FOREVER_REL, 166 type, size, data, expiration, GNUNET_TIME_UNIT_FOREVER_REL,
166 &delay_dht_put_blocks, po); 167 &delay_dht_put_blocks, po);
167} 168}