aboutsummaryrefslogtreecommitdiff
path: root/src/dht
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-08-26 21:00:02 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-08-30 09:42:02 +0200
commite8a1ac3ff6049b456266b16145818db32f679096 (patch)
treec042c941c5df8419699597db2cbebd605c8ead0c /src/dht
parent585d02e2c28e1db2e713e047db01367b842cbbc7 (diff)
downloadgnunet-e8a1ac3ff6049b456266b16145818db32f679096.tar.gz
gnunet-e8a1ac3ff6049b456266b16145818db32f679096.zip
-First pass through DHT
Diffstat (limited to 'src/dht')
-rw-r--r--src/dht/gnunet-service-dht.h3
-rw-r--r--src/dht/gnunet-service-dht_clients.c10
2 files changed, 2 insertions, 11 deletions
diff --git a/src/dht/gnunet-service-dht.h b/src/dht/gnunet-service-dht.h
index ecb79fa50..f7c2fed76 100644
--- a/src/dht/gnunet-service-dht.h
+++ b/src/dht/gnunet-service-dht.h
@@ -158,7 +158,8 @@ GDS_CLIENTS_handle_reply (const struct GNUNET_DATACACHE_Block *bd,
158 158
159/** 159/**
160 * Check if some client is monitoring GET messages and notify 160 * Check if some client is monitoring GET messages and notify
161 * them in that case. 161 * them in that case. If tracked, @a path should include the local peer.
162 *
162 * 163 *
163 * @param options Options, for instance RecordRoute, DemultiplexEverywhere. 164 * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
164 * @param type The type of data in the request. 165 * @param type The type of data in the request.
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index c0c0b9a33..b4d139eec 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -1398,16 +1398,6 @@ get_action (void *cls,
1398} 1398}
1399 1399
1400 1400
1401/**
1402 * Check if some client is monitoring GET messages and notify
1403 * them in that case. If tracked, @a path should include the local peer.
1404 *
1405 * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
1406 * @param type The type of data in the request.
1407 * @param hop_count Hop count so far.
1408 * @param desired_replication_level Desired replication level.
1409 * @param key Key of the requested data.
1410 */
1411void 1401void
1412GDS_CLIENTS_process_get (enum GNUNET_DHT_RouteOption options, 1402GDS_CLIENTS_process_get (enum GNUNET_DHT_RouteOption options,
1413 enum GNUNET_BLOCK_Type type, 1403 enum GNUNET_BLOCK_Type type,