diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-02-21 17:57:14 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-02-21 17:57:14 +0100 |
commit | 627d9d522445e1daa0c7a77096c6f73e53051deb (patch) | |
tree | d2f33c9fe8ae6c3053102486c8d334cef49ed1ef /src/conversation | |
parent | 89e606364e4ccb77d6e6d8b0b7518c1749d90243 (diff) |
fix conversation issue to make tests pass again
Diffstat (limited to 'src/conversation')
-rw-r--r-- | src/conversation/gnunet-service-conversation.c | 6 | ||||
-rw-r--r-- | src/conversation/test_conversation_api_twocalls.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c index 4e1ac0d156..f80cc1d113 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 2e2a73e3fc..7d2705e705 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); } |