aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_clients.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht_clients.h')
-rw-r--r--src/dht/gnunet-service-dht_clients.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dht/gnunet-service-dht_clients.h b/src/dht/gnunet-service-dht_clients.h
index 9f3d2dd83..f6d4253d5 100644
--- a/src/dht/gnunet-service-dht_clients.h
+++ b/src/dht/gnunet-service-dht_clients.h
@@ -47,7 +47,7 @@
47 */ 47 */
48void 48void
49GDS_CLIENTS_handle_reply (struct GNUNET_TIME_Absolute expiration, 49GDS_CLIENTS_handle_reply (struct GNUNET_TIME_Absolute expiration,
50 const GNUNET_HashCode * key, 50 const struct GNUNET_HashCode * key,
51 unsigned int get_path_length, 51 unsigned int get_path_length,
52 const struct GNUNET_PeerIdentity *get_path, 52 const struct GNUNET_PeerIdentity *get_path,
53 unsigned int put_path_length, 53 unsigned int put_path_length,
@@ -75,7 +75,7 @@ GDS_CLIENTS_process_get (uint32_t options,
75 uint32_t desired_replication_level, 75 uint32_t desired_replication_level,
76 unsigned int path_length, 76 unsigned int path_length,
77 const struct GNUNET_PeerIdentity *path, 77 const struct GNUNET_PeerIdentity *path,
78 const GNUNET_HashCode * key); 78 const struct GNUNET_HashCode * key);
79 79
80/** 80/**
81 * Check if some client is monitoring GET RESP messages and notify 81 * Check if some client is monitoring GET RESP messages and notify
@@ -98,7 +98,7 @@ GDS_CLIENTS_process_get_resp (enum GNUNET_BLOCK_Type type,
98 const struct GNUNET_PeerIdentity *put_path, 98 const struct GNUNET_PeerIdentity *put_path,
99 unsigned int put_path_length, 99 unsigned int put_path_length,
100 struct GNUNET_TIME_Absolute exp, 100 struct GNUNET_TIME_Absolute exp,
101 const GNUNET_HashCode * key, 101 const struct GNUNET_HashCode * key,
102 const void *data, 102 const void *data,
103 size_t size); 103 size_t size);
104 104
@@ -125,7 +125,7 @@ GDS_CLIENTS_process_put (uint32_t options,
125 unsigned int path_length, 125 unsigned int path_length,
126 const struct GNUNET_PeerIdentity *path, 126 const struct GNUNET_PeerIdentity *path,
127 struct GNUNET_TIME_Absolute exp, 127 struct GNUNET_TIME_Absolute exp,
128 const GNUNET_HashCode * key, 128 const struct GNUNET_HashCode * key,
129 const void *data, 129 const void *data,
130 size_t size); 130 size_t size);
131 131