aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_clients.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-04-07 09:43:30 +0000
committerChristian Grothoff <christian@grothoff.org>2014-04-07 09:43:30 +0000
commitf17707fd0e6c789f57c8b7c0b4a4b500f4cefd47 (patch)
tree80db41804a54a05831087802099b52b68fd07d15 /src/dht/gnunet-service-dht_clients.c
parent906f67b113fa2a9b27ab7a333d1e25cb0b500140 (diff)
downloadgnunet-f17707fd0e6c789f57c8b7c0b4a4b500f4cefd47.tar.gz
gnunet-f17707fd0e6c789f57c8b7c0b4a4b500f4cefd47.zip
-doxygen
Diffstat (limited to 'src/dht/gnunet-service-dht_clients.c')
-rw-r--r--src/dht/gnunet-service-dht_clients.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index 2ec3c180c..eb42f6747 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -110,7 +110,7 @@ struct ClientList
110 110
111 111
112/** 112/**
113 * Entry in the DHT routing table for a client's GET request. 113 * Entry in the local forwarding map for a client's GET request.
114 */ 114 */
115struct ClientQueryRecord 115struct ClientQueryRecord
116{ 116{
@@ -253,7 +253,7 @@ static struct ClientMonitorRecord *monitor_head;
253static struct ClientMonitorRecord *monitor_tail; 253static struct ClientMonitorRecord *monitor_tail;
254 254
255/** 255/**
256 * Hashmap for fast key based lookup, maps keys to 'struct ClientQueryRecord' entries. 256 * Hashmap for fast key based lookup, maps keys to `struct ClientQueryRecord` entries.
257 */ 257 */
258static struct GNUNET_CONTAINER_MultiHashMap *forward_map; 258static struct GNUNET_CONTAINER_MultiHashMap *forward_map;
259 259
@@ -427,7 +427,9 @@ transmit_request (struct ClientQueryRecord *cqr)
427 GNUNET_CONSTANTS_BLOOMFILTER_K); 427 GNUNET_CONSTANTS_BLOOMFILTER_K);
428 LOG (GNUNET_ERROR_TYPE_DEBUG, 428 LOG (GNUNET_ERROR_TYPE_DEBUG,
429 "Initiating GET for %s, replication %u, already have %u replies\n", 429 "Initiating GET for %s, replication %u, already have %u replies\n",
430 GNUNET_h2s(&cqr->key), cqr->replication, cqr->seen_replies_count); 430 GNUNET_h2s (&cqr->key),
431 cqr->replication,
432 cqr->seen_replies_count);
431 GDS_NEIGHBOURS_handle_get (cqr->type, cqr->msg_options, cqr->replication, 433 GDS_NEIGHBOURS_handle_get (cqr->type, cqr->msg_options, cqr->replication,
432 0 /* hop count */ , 434 0 /* hop count */ ,
433 &cqr->key, cqr->xquery, cqr->xquery_size, reply_bf, 435 &cqr->key, cqr->xquery, cqr->xquery_size, reply_bf,