gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r24191 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r24191 - gnunet/src/mesh
Date: Fri, 5 Oct 2012 13:47:01 +0200

Author: bartpolot
Date: 2012-10-05 13:47:01 +0200 (Fri, 05 Oct 2012)
New Revision: 24191

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
   gnunet/src/mesh/mesh_protocol.h
Log:
- fix #2580

Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2012-10-05 11:43:11 UTC (rev 
24190)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2012-10-05 11:47:01 UTC (rev 
24191)
@@ -4664,8 +4664,12 @@
       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
+      case GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE:
         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                    "   type prebuilt (payload, tunnel destroy)\n");
+                    "   prebuilt message\n");
+        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                    "   type %s\n",
+                    GNUNET_MESH_DEBUG_M2S(queue->type));
         dd = queue->cls;
         data_descriptor_decrement_rc (dd->mesh_data);
         break;

Modified: gnunet/src/mesh/mesh_protocol.h
===================================================================
--- gnunet/src/mesh/mesh_protocol.h     2012-10-05 11:43:11 UTC (rev 24190)
+++ gnunet/src/mesh/mesh_protocol.h     2012-10-05 11:47:01 UTC (rev 24191)
@@ -235,22 +235,21 @@
    * Type: GNUNET_MESSAGE_TYPE_MESH_POLL
    */
   struct GNUNET_MessageHeader header;
-  
+
   /**
    * TID of the tunnel
    */
   uint32_t tid GNUNET_PACKED;
-  
+
   /**
    * OID of the tunnel
    */
   struct GNUNET_PeerIdentity oid;
-  
+
   /**
    * Last ACK received.
    */
   uint32_t last_ack;
-  
 };
 
 /**




reply via email to

[Prev in Thread] Current Thread [Next in Thread]