aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-04-04 07:43:11 +0000
committerChristian Grothoff <christian@grothoff.org>2013-04-04 07:43:11 +0000
commitb0825e081a6818afb08473a3a6b351ad3ea7eaa5 (patch)
tree788ee1ad45d041cc90454cfc8b71d04bc06bbc10 /src
parentab68396e62482477b910f532f050558a50ac20cc (diff)
downloadgnunet-b0825e081a6818afb08473a3a6b351ad3ea7eaa5.tar.gz
gnunet-b0825e081a6818afb08473a3a6b351ad3ea7eaa5.zip
-new core API doesn't expose ATS anymore, likely mesh2 should not either
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_mesh2_service.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/include/gnunet_mesh2_service.h b/src/include/gnunet_mesh2_service.h
index b4631a8ab..cabd8b69b 100644
--- a/src/include/gnunet_mesh2_service.h
+++ b/src/include/gnunet_mesh2_service.h
@@ -64,7 +64,6 @@ struct GNUNET_MESH_Tunnel;
64 * @param tunnel_ctx place to store local state associated with the tunnel 64 * @param tunnel_ctx place to store local state associated with the tunnel
65 * @param sender who sent the message 65 * @param sender who sent the message
66 * @param message the actual message 66 * @param message the actual message
67 * @param atsi performance data for the connection
68 * @return GNUNET_OK to keep the connection open, 67 * @return GNUNET_OK to keep the connection open,
69 * GNUNET_SYSERR to close it (signal serious error) 68 * GNUNET_SYSERR to close it (signal serious error)
70 */ 69 */
@@ -74,9 +73,7 @@ typedef int (*GNUNET_MESH_MessageCallback) (void *cls,
74 const struct GNUNET_PeerIdentity * 73 const struct GNUNET_PeerIdentity *
75 sender, 74 sender,
76 const struct GNUNET_MessageHeader * 75 const struct GNUNET_MessageHeader *
77 message, 76 message);
78 const struct GNUNET_ATS_Information
79 * atsi);
80 77
81 78
82/** 79/**
@@ -126,10 +123,7 @@ typedef void *(GNUNET_MESH_InboundTunnelNotificationHandler) (void *cls,
126 * tunnel, 123 * tunnel,
127 const struct 124 const struct
128 GNUNET_PeerIdentity 125 GNUNET_PeerIdentity
129 * initiator, 126 * initiator);
130 const struct
131 GNUNET_ATS_Information
132 * atsi);
133 127
134 128
135/** 129/**