aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index bb3d4d2d3..70b6d1096 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -138,13 +138,9 @@ GST_neighbours_keepalive (const struct GNUNET_PeerIdentity *neighbour);
138 * to this peer 138 * to this peer
139 * 139 *
140 * @param neighbour neighbour to keep alive 140 * @param neighbour neighbour to keep alive
141 * @param ats performance data
142 * @param ats_count number of entries in ats
143 */ 141 */
144void 142void
145GST_neighbours_keepalive_response (const struct GNUNET_PeerIdentity *neighbour, 143GST_neighbours_keepalive_response (const struct GNUNET_PeerIdentity *neighbour);
146 const struct GNUNET_ATS_Information *ats,
147 uint32_t ats_count);
148 144
149 145
150/** 146/**
@@ -244,9 +240,7 @@ GST_neighbours_switch_to_address (const struct GNUNET_PeerIdentity *peer,
244 * @param address address of the other peer, NULL if other peer 240 * @param address address of the other peer, NULL if other peer
245 * connected to us 241 * connected to us
246 * @param session session to use (or NULL) 242 * @param session session to use (or NULL)
247 * @param ats performance data 243 */
248 * @param ats_count number of entries in ats (excluding 0-termination)
249 */
250void 244void
251GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message, 245GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message,
252 const struct GNUNET_PeerIdentity *peer, 246 const struct GNUNET_PeerIdentity *peer,
@@ -263,16 +257,12 @@ GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message,
263 * @param address address of the other peer, NULL if other peer 257 * @param address address of the other peer, NULL if other peer
264 * connected to us 258 * connected to us
265 * @param session session to use (or NULL) 259 * @param session session to use (or NULL)
266 * @param ats performance data
267 * @param ats_count number of entries in ats
268 */ 260 */
269void 261void
270GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message, 262GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message,
271 const struct GNUNET_PeerIdentity *peer, 263 const struct GNUNET_PeerIdentity *peer,
272 const struct GNUNET_HELLO_Address *address, 264 const struct GNUNET_HELLO_Address *address,
273 struct Session *session, 265 struct Session *session);
274 const struct GNUNET_ATS_Information *ats,
275 uint32_t ats_count);
276 266
277 267
278/** 268/**
@@ -284,16 +274,12 @@ GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message,
284 * @param address address of the other peer, NULL if other peer 274 * @param address address of the other peer, NULL if other peer
285 * connected to us 275 * connected to us
286 * @param session session to use (or NULL) 276 * @param session session to use (or NULL)
287 * @param ats performance data
288 * @param ats_count number of entries in ats
289 */ 277 */
290void 278void
291GST_neighbours_handle_session_ack (const struct GNUNET_MessageHeader *message, 279GST_neighbours_handle_session_ack (const struct GNUNET_MessageHeader *message,
292 const struct GNUNET_PeerIdentity *peer, 280 const struct GNUNET_PeerIdentity *peer,
293 const struct GNUNET_HELLO_Address *address, 281 const struct GNUNET_HELLO_Address *address,
294 struct Session *session, 282 struct Session *session);
295 const struct GNUNET_ATS_Information *ats,
296 uint32_t ats_count);
297 283
298 284
299/** 285/**