aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh.c')
-rw-r--r--src/mesh/gnunet-service-mesh.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 45d5d2cfd..434e448af 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -2015,7 +2015,7 @@ send_p2p_tunnel_destroy (void *cls, size_t size, void *buf)
2015static int 2015static int
2016handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer, 2016handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
2017 const struct GNUNET_MessageHeader *message, 2017 const struct GNUNET_MessageHeader *message,
2018 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 2018 const struct GNUNET_ATS_Information *atsi)
2019{ 2019{
2020 unsigned int own_pos; 2020 unsigned int own_pos;
2021 uint16_t size; 2021 uint16_t size;
@@ -2205,7 +2205,7 @@ handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
2205static int 2205static int
2206handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer, 2206handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2207 const struct GNUNET_MessageHeader *message, 2207 const struct GNUNET_MessageHeader *message,
2208 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 2208 const struct GNUNET_ATS_Information *atsi)
2209{ 2209{
2210 struct GNUNET_MESH_Unicast *msg; 2210 struct GNUNET_MESH_Unicast *msg;
2211 struct MeshTunnel *t; 2211 struct MeshTunnel *t;
@@ -2270,7 +2270,7 @@ handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2270static int 2270static int
2271handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer, 2271handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2272 const struct GNUNET_MessageHeader *message, 2272 const struct GNUNET_MessageHeader *message,
2273 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 2273 const struct GNUNET_ATS_Information *atsi)
2274{ 2274{
2275 struct GNUNET_MESH_Multicast *msg; 2275 struct GNUNET_MESH_Multicast *msg;
2276 struct GNUNET_PeerIdentity *id; 2276 struct GNUNET_PeerIdentity *id;
@@ -2364,7 +2364,7 @@ handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2364static int 2364static int
2365handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer, 2365handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
2366 const struct GNUNET_MessageHeader *message, 2366 const struct GNUNET_MessageHeader *message,
2367 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 2367 const struct GNUNET_ATS_Information *atsi)
2368{ 2368{
2369 struct GNUNET_MESH_ToOrigin *msg; 2369 struct GNUNET_MESH_ToOrigin *msg;
2370 struct GNUNET_PeerIdentity id; 2370 struct GNUNET_PeerIdentity id;
@@ -2455,7 +2455,7 @@ handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
2455static int 2455static int
2456handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer, 2456handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
2457 const struct GNUNET_MessageHeader *message, 2457 const struct GNUNET_MessageHeader *message,
2458 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 2458 const struct GNUNET_ATS_Information *atsi)
2459{ 2459{
2460 struct GNUNET_MESH_PathACK *msg; 2460 struct GNUNET_MESH_PathACK *msg;
2461 struct GNUNET_PeerIdentity id; 2461 struct GNUNET_PeerIdentity id;
@@ -3612,7 +3612,7 @@ core_init (void *cls, struct GNUNET_CORE_Handle *server,
3612 */ 3612 */
3613static void 3613static void
3614core_connect (void *cls, const struct GNUNET_PeerIdentity *peer, 3614core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
3615 const struct GNUNET_TRANSPORT_ATS_Information *atsi) 3615 const struct GNUNET_ATS_Information *atsi)
3616{ 3616{
3617 struct MeshPeerInfo *peer_info; 3617 struct MeshPeerInfo *peer_info;
3618 struct MeshPeerPath *path; 3618 struct MeshPeerPath *path;