From 627d9d522445e1daa0c7a77096c6f73e53051deb Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 21 Feb 2017 17:57:14 +0100 Subject: fix conversation issue to make tests pass again --- src/conversation/gnunet-service-conversation.c | 6 +++++- src/conversation/test_conversation_api_twocalls.c | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src/conversation') diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c index 4e1ac0d15..f80cc1d11 100644 --- a/src/conversation/gnunet-service-conversation.c +++ b/src/conversation/gnunet-service-conversation.c @@ -620,7 +620,7 @@ handle_client_audio_message (void *cls, const struct ClientAudioMessage *msg) { struct Line *line = cls; - struct ClientAudioMessage *mam; + struct CadetAudioMessage *mam; struct Channel *ch; size_t size; @@ -672,6 +672,10 @@ handle_client_audio_message (void *cls, ch->env = NULL; } + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Received %u bytes of AUDIO data from client CID %u\n", + (unsigned int) size, + msg->cid); ch->env = GNUNET_MQ_msg_extra (mam, size, GNUNET_MESSAGE_TYPE_CONVERSATION_CADET_AUDIO); diff --git a/src/conversation/test_conversation_api_twocalls.c b/src/conversation/test_conversation_api_twocalls.c index 2e2a73e3f..7d2705e70 100644 --- a/src/conversation/test_conversation_api_twocalls.c +++ b/src/conversation/test_conversation_api_twocalls.c @@ -187,7 +187,8 @@ play (void *cls, phone_i++; else { - LOG_DEBUG ("Received unexpected data %.*s\n", + LOG_DEBUG ("Received %u bytes of unexpected data `%.*s'\n", + (unsigned int) data_size, (int) data_size, (const char *) data); } -- cgit v1.2.3