aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh_channel.c')
-rw-r--r--src/mesh/gnunet-service-mesh_channel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesh/gnunet-service-mesh_channel.c b/src/mesh/gnunet-service-mesh_channel.c
index bdad559b7..d3bbcdbc0 100644
--- a/src/mesh/gnunet-service-mesh_channel.c
+++ b/src/mesh/gnunet-service-mesh_channel.c
@@ -1524,7 +1524,7 @@ GMCH_send_data_ack (struct MeshChannel *ch, int fwd)
1524 } 1524 }
1525 rel = fwd ? ch->dest_rel : ch->root_rel; 1525 rel = fwd ? ch->dest_rel : ch->root_rel;
1526 ack = rel->mid_recv - 1; 1526 ack = rel->mid_recv - 1;
1527 LOG (GNUNET_ERROR_TYPE_INFO, "=> DATA_ACK for %u\n", ack); 1527 LOG (GNUNET_ERROR_TYPE_INFO, "===> DATA_ACK for %u\n", ack);
1528 1528
1529 msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_DATA_ACK); 1529 msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_DATA_ACK);
1530 msg.header.size = htons (sizeof (msg)); 1530 msg.header.size = htons (sizeof (msg));
@@ -1941,7 +1941,7 @@ GMCH_handle_data (struct MeshChannel *ch,
1941 GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO); 1941 GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO);
1942 1942
1943 mid = ntohl (msg->mid); 1943 mid = ntohl (msg->mid);
1944 LOG (GNUNET_ERROR_TYPE_INFO, "<= DATA %u %s on channel %s\n", 1944 LOG (GNUNET_ERROR_TYPE_INFO, "<=== DATA %u %s on channel %s\n",
1945 mid, GM_f2s (fwd), GMCH_2s (ch)); 1945 mid, GM_f2s (fwd), GMCH_2s (ch));
1946 1946
1947 if (GNUNET_NO == ch->reliable || 1947 if (GNUNET_NO == ch->reliable ||
@@ -2020,7 +2020,7 @@ GMCH_handle_data_ack (struct MeshChannel *ch,
2020 } 2020 }
2021 2021
2022 ack = ntohl (msg->mid); 2022 ack = ntohl (msg->mid);
2023 LOG (GNUNET_ERROR_TYPE_INFO, "<= %s ACK %u\n", GM_f2s (fwd), ack); 2023 LOG (GNUNET_ERROR_TYPE_INFO, "<=== %s ACK %u\n", GM_f2s (fwd), ack);
2024 2024
2025 if (GNUNET_YES == fwd) 2025 if (GNUNET_YES == fwd)
2026 { 2026 {
@@ -2295,7 +2295,7 @@ GMCH_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2295 uint16_t type; 2295 uint16_t type;
2296 2296
2297 type = ntohs (message->type); 2297 type = ntohs (message->type);
2298 LOG (GNUNET_ERROR_TYPE_INFO, "=> %s %s on channel %s\n", 2298 LOG (GNUNET_ERROR_TYPE_INFO, "===> %s %s on channel %s\n",
2299 GM_m2s (type), GM_f2s (fwd), GMCH_2s (ch)); 2299 GM_m2s (type), GM_f2s (fwd), GMCH_2s (ch));
2300 2300
2301 if (GMT_is_loopback (ch->t)) 2301 if (GMT_is_loopback (ch->t))
@@ -2310,7 +2310,7 @@ GMCH_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2310 case GNUNET_MESSAGE_TYPE_MESH_DATA: 2310 case GNUNET_MESSAGE_TYPE_MESH_DATA:
2311 2311
2312 payload = (struct GNUNET_MESH_Data *) message; 2312 payload = (struct GNUNET_MESH_Data *) message;
2313 LOG (GNUNET_ERROR_TYPE_INFO, "=> %s %u\n", 2313 LOG (GNUNET_ERROR_TYPE_INFO, "===> %s %u\n",
2314 GM_m2s (type), ntohl (payload->mid)); 2314 GM_m2s (type), ntohl (payload->mid));
2315 if (GNUNET_YES == ch->reliable) 2315 if (GNUNET_YES == ch->reliable)
2316 { 2316 {