aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-10-18 12:37:02 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-10-18 12:37:02 +0000
commit18642e4b759b39aa644d8a232c31c2a755d707bb (patch)
treed49d6df6e161ce47ea66d8aa1f2411dff9bef6dc /src/transport/gnunet-service-transport_neighbours.h
parent0205ef3adaf5aca84807cec3e83ea41eda8df889 (diff)
downloadgnunet-18642e4b759b39aa644d8a232c31c2a755d707bb.tar.gz
gnunet-18642e4b759b39aa644d8a232c31c2a755d707bb.zip
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.h')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.h b/src/transport/gnunet-service-transport_neighbours.h
index bd043a4b6..4875dd6d6 100644
--- a/src/transport/gnunet-service-transport_neighbours.h
+++ b/src/transport/gnunet-service-transport_neighbours.h
@@ -205,11 +205,25 @@ GST_neighbours_session_terminated (const struct GNUNET_PeerIdentity *peer,
205 205
206 206
207void 207void
208GST_neighbours_notify_payload (const struct GNUNET_PeerIdentity *peer, 208GST_neighbours_notify_data_recv (const struct GNUNET_PeerIdentity *peer,
209 const struct GNUNET_HELLO_Address *address, 209 const struct GNUNET_HELLO_Address *address,
210 struct Session *session, 210 struct Session *session,
211 const struct GNUNET_MessageHeader *message); 211 const struct GNUNET_MessageHeader *message);
212 212
213void
214GST_neighbours_notify_payload_recv (const struct GNUNET_PeerIdentity *peer,
215 const struct GNUNET_HELLO_Address *address,
216 struct Session *session,
217 const struct GNUNET_MessageHeader *message);
218
219void
220GST_neighbours_notify_payload_sent (const struct GNUNET_PeerIdentity *peer,
221 size_t size);
222
223void
224GST_neighbours_notify_data_sent (const struct GNUNET_PeerIdentity *peer,
225 size_t size);
226
213/** 227/**
214 * For an existing neighbour record, set the active connection to 228 * For an existing neighbour record, set the active connection to
215 * use the given address. 229 * use the given address.