aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-02 19:29:22 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-02 19:29:22 +0000
commit0834bf4d6fdf19ab410c01c02e65fcda8a5e5ebc (patch)
tree2410199dfb90c0ef4d12fc749f30f88e9bfda9b8 /src/conversation/conversation.h
parentec9740ca2ca84525842e6743b45ceb9cb2a3ea95 (diff)
downloadgnunet-0834bf4d6fdf19ab410c01c02e65fcda8a5e5ebc.tar.gz
gnunet-0834bf4d6fdf19ab410c01c02e65fcda8a5e5ebc.zip
-implement microphone library
Diffstat (limited to 'src/conversation/conversation.h')
-rw-r--r--src/conversation/conversation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conversation/conversation.h b/src/conversation/conversation.h
index cc36ca739..91630d8c2 100644
--- a/src/conversation/conversation.h
+++ b/src/conversation/conversation.h
@@ -396,10 +396,10 @@ struct AudioMessage
396 * Type is #GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO 396 * Type is #GNUNET_MESSAGE_TYPE_CONVERSATION_AUDIO
397 */ 397 */
398 struct GNUNET_MessageHeader header; 398 struct GNUNET_MessageHeader header;
399 int SequenceNumber; 399 int32_t SequenceNumber;
400 struct GNUNET_TIME_Absolute time; 400 struct GNUNET_TIME_Absolute time;
401 int length; 401 int32_t length;
402 int encrypted; 402 int32_t encrypted;
403 uint8_t audio[200]; 403 uint8_t audio[200];
404 404
405}; 405};