aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh_connection.c')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.c b/src/mesh/gnunet-service-mesh_connection.c
index 10a2f834c..e26176606 100644
--- a/src/mesh/gnunet-service-mesh_connection.c
+++ b/src/mesh/gnunet-service-mesh_connection.c
@@ -773,7 +773,7 @@ send_connection_ack (struct MeshConnection *connection, int fwd)
773 struct MeshTunnel3 *t; 773 struct MeshTunnel3 *t;
774 774
775 t = connection->t; 775 t = connection->t;
776 LOG (GNUNET_ERROR_TYPE_INFO, "Send %s ACK on connection %s\n", 776 LOG (GNUNET_ERROR_TYPE_INFO, "=> {%18s ACK} on connection %s\n",
777 GM_f2s (!fwd), GMC_2s (connection)); 777 GM_f2s (!fwd), GMC_2s (connection));
778 GMP_queue_add (get_hop (connection, fwd), NULL, 778 GMP_queue_add (get_hop (connection, fwd), NULL,
779 GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK, 779 GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK,
@@ -2962,9 +2962,9 @@ GMC_send_create (struct MeshConnection *connection)
2962 size = sizeof (struct GNUNET_MESH_ConnectionCreate); 2962 size = sizeof (struct GNUNET_MESH_ConnectionCreate);
2963 size += connection->path->length * sizeof (struct GNUNET_PeerIdentity); 2963 size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
2964 2964
2965 LOG (GNUNET_ERROR_TYPE_INFO, "Send %s (%u bytes) on connection %s\n", 2965 LOG (GNUNET_ERROR_TYPE_INFO, "=> %s on connection %s (%u bytes)\n",
2966 GM_m2s (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE), 2966 GM_m2s (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE),
2967 size, GMC_2s (connection)); 2967 GMC_2s (connection), size);
2968 LOG (GNUNET_ERROR_TYPE_DEBUG, " C_P+ %p %u (create)\n", 2968 LOG (GNUNET_ERROR_TYPE_DEBUG, " C_P+ %p %u (create)\n",
2969 connection, connection->pending_messages); 2969 connection, connection->pending_messages);
2970 connection->pending_messages++; 2970 connection->pending_messages++;