aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_neighbours.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-26 21:24:03 +0000
committerChristian Grothoff <christian@grothoff.org>2016-09-26 21:24:03 +0000
commit7b00dd51218edbd9182caa664cfce185edc2cc45 (patch)
tree2cea8a9d7085aa6e3d16256f18f7c77f3320bb75 /src/dht/gnunet-service-dht_neighbours.h
parent60ff113fe4e7bb71d5696063b9a9b81eba60a108 (diff)
downloadgnunet-7b00dd51218edbd9182caa664cfce185edc2cc45.tar.gz
gnunet-7b00dd51218edbd9182caa664cfce185edc2cc45.zip
porting xdht to new service API, major code de-duplication effort
Diffstat (limited to 'src/dht/gnunet-service-dht_neighbours.h')
-rw-r--r--src/dht/gnunet-service-dht_neighbours.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dht/gnunet-service-dht_neighbours.h b/src/dht/gnunet-service-dht_neighbours.h
index 856f1faae..d89e5c54f 100644
--- a/src/dht/gnunet-service-dht_neighbours.h
+++ b/src/dht/gnunet-service-dht_neighbours.h
@@ -58,7 +58,7 @@ GDS_NEIGHBOURS_handle_put (enum GNUNET_BLOCK_Type type,
58 struct GNUNET_TIME_Absolute expiration_time, 58 struct GNUNET_TIME_Absolute expiration_time,
59 uint32_t hop_count, 59 uint32_t hop_count,
60 struct GNUNET_CONTAINER_BloomFilter *bf, 60 struct GNUNET_CONTAINER_BloomFilter *bf,
61 const struct GNUNET_HashCode * key, 61 const struct GNUNET_HashCode *key,
62 unsigned int put_path_length, 62 unsigned int put_path_length,
63 struct GNUNET_PeerIdentity *put_path, 63 struct GNUNET_PeerIdentity *put_path,
64 const void *data, size_t data_size); 64 const void *data, size_t data_size);
@@ -125,7 +125,7 @@ GDS_NEIGHBOURS_handle_reply (const struct GNUNET_PeerIdentity *target,
125/** 125/**
126 * Initialize neighbours subsystem. 126 * Initialize neighbours subsystem.
127 * 127 *
128 * @return GNUNET_OK on success, GNUNET_SYSERR on error 128 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
129 */ 129 */
130int 130int
131GDS_NEIGHBOURS_init (void); 131GDS_NEIGHBOURS_init (void);
@@ -144,7 +144,7 @@ GDS_NEIGHBOURS_done (void);
144 * @return identity of the local node 144 * @return identity of the local node
145 */ 145 */
146struct GNUNET_PeerIdentity * 146struct GNUNET_PeerIdentity *
147GDS_NEIGHBOURS_get_id (); 147GDS_NEIGHBOURS_get_id (void);
148 148
149 149
150#endif 150#endif