aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-03-27 15:03:17 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-03-27 15:03:17 +0000
commit075f1356987b48d3afd3f5c01ddebe23fa0ae240 (patch)
tree50a1afb6b14bafe34e34f262bf4a4e38c888dee5 /src/transport/gnunet-service-transport_neighbours.h
parentce53b7a21b4c04ddc36b5dd5256608560bb8bb2a (diff)
downloadgnunet-075f1356987b48d3afd3f5c01ddebe23fa0ae240.tar.gz
gnunet-075f1356987b48d3afd3f5c01ddebe23fa0ae240.zip
We do not need the address and session here
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index ff62867fa..64291548f 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -276,16 +276,11 @@ GST_neighbours_switch_to_address (const struct GNUNET_PeerIdentity *peer,
276 * 276 *
277 * @param message possibly a 'struct SessionConnectMessage' (check format) 277 * @param message possibly a 'struct SessionConnectMessage' (check format)
278 * @param peer identity of the peer to switch the address for 278 * @param peer identity of the peer to switch the address for
279 * @param address address of the other peer, NULL if other peer
280 * connected to us
281 * @param session session to use (or NULL)
282 * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error 279 * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
283 */ 280 */
284int 281int
285GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message, 282GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message,
286 const struct GNUNET_PeerIdentity *peer, 283 const struct GNUNET_PeerIdentity *peer);
287 const struct GNUNET_HELLO_Address *address,
288 struct Session *session);
289 284
290 285
291/** 286/**