aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/mesh_api_new.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/mesh_api_new.c')
-rw-r--r--src/mesh/mesh_api_new.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mesh/mesh_api_new.c b/src/mesh/mesh_api_new.c
index bfdd902b7..1d2586825 100644
--- a/src/mesh/mesh_api_new.c
+++ b/src/mesh/mesh_api_new.c
@@ -1575,6 +1575,25 @@ GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle *th)
1575} 1575}
1576 1576
1577 1577
1578/**
1579 * Transition API for tunnel ctx management
1580 */
1581void
1582GNUNET_MESH_tunnel_set_data (struct GNUNET_MESH_Tunnel *tunnel, void *data)
1583{
1584 tunnel->ctx = data;
1585}
1586
1587/**
1588 * Transition API for tunnel ctx management
1589 */
1590void *
1591GNUNET_MESH_tunnel_get_data (struct GNUNET_MESH_Tunnel *tunnel)
1592{
1593 return tunnel->ctx;
1594}
1595
1596
1578#if 0 /* keep Emacsens' auto-indent happy */ 1597#if 0 /* keep Emacsens' auto-indent happy */
1579{ 1598{
1580#endif 1599#endif