aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh_tunnel.c b/src/mesh/gnunet-service-mesh_tunnel.c
index f00544b2e..feef7c20d 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.c
+++ b/src/mesh/gnunet-service-mesh_tunnel.c
@@ -788,9 +788,11 @@ send_prebuilt_message (const struct GNUNET_MessageHeader *message,
788 } 788 }
789 return NULL; 789 return NULL;
790 } 790 }
791
791 type = ntohs (message->type); 792 type = ntohs (message->type);
792 switch (type) 793 switch (type)
793 { 794 {
795 case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
794 case GNUNET_MESSAGE_TYPE_MESH_DATA: 796 case GNUNET_MESSAGE_TYPE_MESH_DATA:
795 case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK: 797 case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
796 case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE: 798 case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE: