aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-service-conversation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/gnunet-service-conversation.c')
-rw-r--r--src/conversation/gnunet-service-conversation.c6
1 files changed, 5 insertions, 1 deletions
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,
620 const struct ClientAudioMessage *msg) 620 const struct ClientAudioMessage *msg)
621{ 621{
622 struct Line *line = cls; 622 struct Line *line = cls;
623 struct ClientAudioMessage *mam; 623 struct CadetAudioMessage *mam;
624 struct Channel *ch; 624 struct Channel *ch;
625 size_t size; 625 size_t size;
626 626
@@ -672,6 +672,10 @@ handle_client_audio_message (void *cls,
672 ch->env = NULL; 672 ch->env = NULL;
673 } 673 }
674 674
675 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
676 "Received %u bytes of AUDIO data from client CID %u\n",
677 (unsigned int) size,
678 msg->cid);
675 ch->env = GNUNET_MQ_msg_extra (mam, 679 ch->env = GNUNET_MQ_msg_extra (mam,
676 size, 680 size,
677 GNUNET_MESSAGE_TYPE_CONVERSATION_CADET_AUDIO); 681 GNUNET_MESSAGE_TYPE_CONVERSATION_CADET_AUDIO);