From: Christian Grothoff Date: Mon, 23 Jan 2017 14:24:20 +0000 (+0100) Subject: give more complete message types in log output X-Git-Tag: taler-0.2.1~327 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cdcc7daf6e5945c737578deffab3087c66ac5d94;p=oweals%2Fgnunet.git give more complete message types in log output --- diff --git a/src/cadet/gnunet-service-cadet-new_connection.c b/src/cadet/gnunet-service-cadet-new_connection.c index b365599bf..60389008c 100644 --- a/src/cadet/gnunet-service-cadet-new_connection.c +++ b/src/cadet/gnunet-service-cadet-new_connection.c @@ -209,7 +209,7 @@ GCC_get_ct (struct CadetConnection *cc) /** - * A connection ACK was received for this connection, implying + * A CADET_CONNECTION_ACK was received for this connection, implying * that the end-to-end connection is up. Process it. * * @param cc the connection that got the ACK. @@ -218,7 +218,7 @@ void GCC_handle_connection_create_ack (struct CadetConnection *cc) { LOG (GNUNET_ERROR_TYPE_DEBUG, - "Received CREATE_ACK for %s in state %d (%s)\n", + "Received CADET_CONNECTION_CREATE_ACK for %s in state %d (%s)\n", GCC_2s (cc), cc->state, (GNUNET_YES == cc->mqm_ready) ? "MQM ready" : "MQM busy"); @@ -251,10 +251,10 @@ GCC_handle_kx (struct CadetConnection *cc, { if (CADET_CONNECTION_SENT == cc->state) { - /* We didn't get the CREATE_ACK, but instead got payload. That's fine, + /* We didn't get the CADET_CONNECTION_CREATE_ACK, but instead got payload. That's fine, clearly something is working, so pretend we got an ACK. */ LOG (GNUNET_ERROR_TYPE_DEBUG, - "Faking connection ACK for %s due to KX\n", + "Faking connection CADET_CONNECTION_CREATE_ACK for %s due to KX\n", GCC_2s (cc)); GCC_handle_connection_create_ack (cc); } @@ -314,7 +314,7 @@ send_create (void *cls) pids[i + 1] = *GCP_get_id (GCPP_get_peer_at_offset (cc->path, i)); LOG (GNUNET_ERROR_TYPE_DEBUG, - "Sending CONNECTION_CREATE message for %s\n", + "Sending CADET_CONNECTION_CREATE message for %s\n", GCC_2s (cc)); cc->env = env; cc->mqm_ready = GNUNET_NO; diff --git a/src/cadet/gnunet-service-cadet-new_core.c b/src/cadet/gnunet-service-cadet-new_core.c index 8de780ce0..4a4ead05b 100644 --- a/src/cadet/gnunet-service-cadet-new_core.c +++ b/src/cadet/gnunet-service-cadet-new_core.c @@ -446,7 +446,7 @@ handle_connection_create (void *cls, { /* Duplicate CREATE, pass it on, previous one might have been lost! */ LOG (GNUNET_ERROR_TYPE_DEBUG, - "Passing on duplicate CREATE message on connection %s\n", + "Passing on duplicate CADET_CONNECTION_CREATE message on connection %s\n", GNUNET_sh2s (&msg->cid.connection_of_tunnel)); route_message (sender, &msg->cid, @@ -465,7 +465,7 @@ handle_connection_create (void *cls, if (NULL != cc) { LOG (GNUNET_ERROR_TYPE_DEBUG, - "Received duplicate CREATE message on connection %s\n", + "Received duplicate CADET_CONNECTION_CREATE message on connection %s\n", GNUNET_sh2s (&msg->cid.connection_of_tunnel)); GCC_handle_duplicate_create (cc); return; @@ -474,7 +474,7 @@ handle_connection_create (void *cls, origin = GCP_get (&pids[0], GNUNET_YES); LOG (GNUNET_ERROR_TYPE_DEBUG, - "Received CREATE message from %s for connection %s, building inverse path\n", + "Received CADET_CONNECTION_CREATE message from %s for connection %s, building inverse path\n", GCP_2s (origin), GNUNET_sh2s (&msg->cid.connection_of_tunnel)); path = GCPP_get_path_from_route (path_length - 1, @@ -496,7 +496,7 @@ handle_connection_create (void *cls, struct GNUNET_CADET_ConnectionBrokenMessage *bm; LOG (GNUNET_ERROR_TYPE_DEBUG, - "Received CONNECTION_CREATE from %s for %s. Next hop %s:%u is down. Sending BROKEN\n", + "Received CADET_CONNECTION_CREATE from %s for %s. Next hop %s:%u is down. Sending BROKEN\n", GCP_2s (sender), GNUNET_sh2s (&msg->cid.connection_of_tunnel), GNUNET_i2s (&pids[off + 1]), @@ -513,7 +513,7 @@ handle_connection_create (void *cls, /* Workable route, create routing entry */ LOG (GNUNET_ERROR_TYPE_DEBUG, - "Received CONNECTION_CREATE from %s for %s. Next hop %s:%u is up. Creating route\n", + "Received CADET_CONNECTION_CREATE from %s for %s. Next hop %s:%u is up. Creating route\n", GCP_2s (sender), GNUNET_sh2s (&msg->cid.connection_of_tunnel), GNUNET_i2s (&pids[off + 1]),