aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh_peer.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesh/gnunet-service-mesh_peer.c b/src/mesh/gnunet-service-mesh_peer.c
index 0b2fdff07..c11cec5e5 100644
--- a/src/mesh/gnunet-service-mesh_peer.c
+++ b/src/mesh/gnunet-service-mesh_peer.c
@@ -346,16 +346,13 @@ core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
346 * Functions to handle messages from core 346 * Functions to handle messages from core
347 */ 347 */
348static struct GNUNET_CORE_MessageHandler core_handlers[] = { 348static struct GNUNET_CORE_MessageHandler core_handlers[] = {
349 {&GMC_handle_create, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE, 349 {&GMC_handle_create, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE, 0},
350 0},
351 {&GMC_handle_confirm, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK, 350 {&GMC_handle_confirm, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK,
352 sizeof (struct GNUNET_MESH_ConnectionACK)}, 351 sizeof (struct GNUNET_MESH_ConnectionACK)},
353 {&GMC_handle_broken, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN, 352 {&GMC_handle_broken, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN,
354 sizeof (struct GNUNET_MESH_ConnectionBroken)}, 353 sizeof (struct GNUNET_MESH_ConnectionBroken)},
355 {&GMC_handle_destroy, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY, 354 {&GMC_handle_destroy, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY,
356 sizeof (struct GNUNET_MESH_ConnectionDestroy)}, 355 sizeof (struct GNUNET_MESH_ConnectionDestroy)},
357 {&GMC_handle_keepalive, GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE,
358 sizeof (struct GNUNET_MESH_ConnectionKeepAlive)},
359 {&GMC_handle_ack, GNUNET_MESSAGE_TYPE_MESH_ACK, 356 {&GMC_handle_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
360 sizeof (struct GNUNET_MESH_ACK)}, 357 sizeof (struct GNUNET_MESH_ACK)},
361 {&GMC_handle_poll, GNUNET_MESSAGE_TYPE_MESH_POLL, 358 {&GMC_handle_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,