aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-04-11 15:30:34 +0000
committerBart Polot <bart@net.in.tum.de>2014-04-11 15:30:34 +0000
commite3a5e63344963c203220af18059777bf8a98a9cf (patch)
tree07382f87864e6afea8ae6f011904f21a81968d05 /src/mesh
parentb3ac122d1c0a888855f72f1351e749c2fcd6abc3 (diff)
downloadgnunet-e3a5e63344963c203220af18059777bf8a98a9cf.tar.gz
gnunet-e3a5e63344963c203220af18059777bf8a98a9cf.zip
- log
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.c b/src/mesh/gnunet-service-mesh_connection.c
index 8f85d2019..d90d92fe8 100644
--- a/src/mesh/gnunet-service-mesh_connection.c
+++ b/src/mesh/gnunet-service-mesh_connection.c
@@ -2799,7 +2799,11 @@ GMC_is_sendable (struct MeshConnection *c, int fwd)
2799 " last ack recv: %u, last pid sent: %u, next pid %u\n", 2799 " last ack recv: %u, last pid sent: %u, next pid %u\n",
2800 fc->last_ack_recv, fc->last_pid_sent, fc->next_pid); 2800 fc->last_ack_recv, fc->last_pid_sent, fc->next_pid);
2801 if (GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent)) 2801 if (GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2802 {
2803 LOG (GNUNET_ERROR_TYPE_DEBUG, " sendable\n");
2802 return GNUNET_YES; 2804 return GNUNET_YES;
2805 }
2806 LOG (GNUNET_ERROR_TYPE_DEBUG, " not sendable\n");
2803 return GNUNET_NO; 2807 return GNUNET_NO;
2804} 2808}
2805 2809