aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPhilipp Tölke <toelke@in.tum.de>2011-07-27 07:28:18 +0000
committerPhilipp Tölke <toelke@in.tum.de>2011-07-27 07:28:18 +0000
commite8fac5ff0ff5dece01bdfd51a57a2af7b4117d52 (patch)
tree19a68ad459c01ef59dd77c9dc28cdc2bd371d65c /src/include
parent98760f1bfe7a96e87f762c6948825f12ab9bb736 (diff)
downloadgnunet-e8fac5ff0ff5dece01bdfd51a57a2af7b4117d52.tar.gz
gnunet-e8fac5ff0ff5dece01bdfd51a57a2af7b4117d52.zip
queue transmits to tunnels
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_mesh_service.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/gnunet_mesh_service.h b/src/include/gnunet_mesh_service.h
index 2a288a3a5..25744248b 100644
--- a/src/include/gnunet_mesh_service.h
+++ b/src/include/gnunet_mesh_service.h
@@ -359,6 +359,13 @@ void
359GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle 359GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle
360 *th); 360 *th);
361 361
362void GNUNET_MESH_tunnel_set_head(struct GNUNET_MESH_Tunnel* tunnel, void* head);
363void GNUNET_MESH_tunnel_set_tail(struct GNUNET_MESH_Tunnel* tunnel, void* tail);
364void* GNUNET_MESH_tunnel_get_head(struct GNUNET_MESH_Tunnel* tunnel);
365void* GNUNET_MESH_tunnel_get_tail(struct GNUNET_MESH_Tunnel* tunnel);
366
367void GNUNET_MESH_tunnel_set_data(struct GNUNET_MESH_Tunnel* tunnel, void* data);
368void* GNUNET_MESH_tunnel_get_data(struct GNUNET_MESH_Tunnel* tunnel);
362 369
363#if 0 /* keep Emacsens' auto-indent happy */ 370#if 0 /* keep Emacsens' auto-indent happy */
364{ 371{