gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r32860 - gnunet/src/mesh
Date: Tue, 1 Apr 2014 02:16:46 +0200

Author: bartpolot
Date: 2014-04-01 02:16:46 +0200 (Tue, 01 Apr 2014)
New Revision: 32860

Modified:
   gnunet/src/mesh/gnunet-service-mesh_connection.c
Log:
- log

Modified: gnunet/src/mesh/gnunet-service-mesh_connection.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_connection.c    2014-04-01 00:16:43 UTC 
(rev 32859)
+++ gnunet/src/mesh/gnunet-service-mesh_connection.c    2014-04-01 00:16:46 UTC 
(rev 32860)
@@ -2750,12 +2750,16 @@
 {
   struct MeshFlowControl *fc;
 
+  LOG (GNUNET_ERROR_TYPE_DEBUG, " checking sendability of %s traffic on %s\n",
+       GM_f2s (fwd), GMC_2s (c));
   if (NULL == c)
   {
     GNUNET_break (0);
     return GNUNET_YES;
   }
   fc = fwd ? &c->fwd_fc : &c->bck_fc;
+  LOG (GNUNET_ERROR_TYPE_DEBUG, " last ack recv: %u, last pid sent: %u\n",
+       fc->last_ack_recv, fc->last_pid_sent);
   if (GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
     return GNUNET_YES;
   return GNUNET_NO;




reply via email to

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