aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_tunnel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh_tunnel.c')
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesh/gnunet-service-mesh_tunnel.c b/src/mesh/gnunet-service-mesh_tunnel.c
index 11c7019c3..d6922f76a 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.c
+++ b/src/mesh/gnunet-service-mesh_tunnel.c
@@ -474,7 +474,7 @@ handle_ch_destroy (struct MeshTunnel3 *t,
474 * @param fwd Is this message fwd? 474 * @param fwd Is this message fwd?
475 */ 475 */
476static void 476static void
477handle_GMT_decrypted (struct MeshTunnel3 *t, 477handle_decrypted (struct MeshTunnel3 *t,
478 const struct GNUNET_MessageHeader *msgh, 478 const struct GNUNET_MessageHeader *msgh,
479 int fwd) 479 int fwd)
480{ 480{
@@ -551,7 +551,7 @@ GMT_handle_encrypted (struct MeshTunnel3 *t,
551 while (off < payload_size) 551 while (off < payload_size)
552 { 552 {
553 msgh = (struct GNUNET_MessageHeader *) &cbuf[off]; 553 msgh = (struct GNUNET_MessageHeader *) &cbuf[off];
554 handle_GMT_decrypted (t, msgh, fwd); 554 handle_decrypted (t, msgh, fwd);
555 off += ntohs (msgh->size); 555 off += ntohs (msgh->size);
556 } 556 }
557} 557}
@@ -1172,9 +1172,9 @@ GMT_send_acks (struct MeshTunnel3 *t, int fwd)
1172 unsigned int cs; 1172 unsigned int cs;
1173 unsigned int buffer; 1173 unsigned int buffer;
1174 1174
1175 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1175 LOG (GNUNET_ERROR_TYPE_DEBUG,
1176 "Tunnel send %s ACKs on %s\n", 1176 "Tunnel send %s ACKs on %s\n",
1177 fwd ? "FWD" : "BCK", GMT_2s (t)); 1177 fwd ? "FWD" : "BCK", GMT_2s (t));
1178 1178
1179 if (NULL == t) 1179 if (NULL == t)
1180 { 1180 {