aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-15 23:00:42 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-15 23:00:42 +0000
commit2664bb53dadb2bff0afa1116f505a77543124520 (patch)
tree7cf0306c58a9ecd07d24350249fcc210cf6bc2c9 /src
parent5198e24a48d88110d5b19112a1dda7cf45badc3c (diff)
downloadgnunet-2664bb53dadb2bff0afa1116f505a77543124520.tar.gz
gnunet-2664bb53dadb2bff0afa1116f505a77543124520.zip
- debug
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 0c8d0e515..76b8f3d38 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -2172,13 +2172,13 @@ tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd)
2172 prev_fc = fwd ? &t->prev_fc : &t->next_fc; 2172 prev_fc = fwd ? &t->prev_fc : &t->next_fc;
2173 hop = fwd ? t->prev_hop : t->next_hop; 2173 hop = fwd ? t->prev_hop : t->next_hop;
2174 2174
2175 /* Is it after unicast retransmission? */
2176 switch (type) 2175 switch (type)
2177 { 2176 {
2178 case GNUNET_MESSAGE_TYPE_MESH_UNICAST: 2177 case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2179 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN: 2178 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2180 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 2179 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2181 "ACK due to DATA retransmission\n"); 2180 "ACK due to %s\n",
2181 GNUNET_MESH_DEBUG_M2S (type));
2182 if (GNUNET_YES == t->nobuffer) 2182 if (GNUNET_YES == t->nobuffer)
2183 { 2183 {
2184 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n"); 2184 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");