aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-04 16:22:28 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-04 16:22:28 +0000
commit84fafd05402d39d86ee385b4410b06afcfbd6671 (patch)
tree803e180d203c054075da4a7b91529e5ddad92b28 /src/conversation/conversation.h
parentcd6d3eb43c67e99bd21f2c7a5735422d135a5e5e (diff)
downloadgnunet-84fafd05402d39d86ee385b4410b06afcfbd6671.tar.gz
gnunet-84fafd05402d39d86ee385b4410b06afcfbd6671.zip
-sending RING signal
Diffstat (limited to 'src/conversation/conversation.h')
-rw-r--r--src/conversation/conversation.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/conversation/conversation.h b/src/conversation/conversation.h
index 05fdc326b..dceb9b9e4 100644
--- a/src/conversation/conversation.h
+++ b/src/conversation/conversation.h
@@ -433,7 +433,7 @@ struct ClientPhoneRingMessage
433 433
434 /** 434 /**
435 * Always zero. 435 * Always zero.
436p */ 436 */
437 uint32_t reserved GNUNET_PACKED; 437 uint32_t reserved GNUNET_PACKED;
438 438
439 /** 439 /**
@@ -559,7 +559,7 @@ struct MeshPhoneRingMessage
559 /** 559 /**
560 * Desired target line. 560 * Desired target line.
561 */ 561 */
562 uint32_t line GNUNET_PACKED; 562 uint32_t remote_line GNUNET_PACKED;
563 563
564 /** 564 /**
565 * Purpose for the signature. 565 * Purpose for the signature.
@@ -591,6 +591,11 @@ struct MeshPhoneRingMessage
591 */ 591 */
592 struct GNUNET_CRYPTO_EccSignature signature; 592 struct GNUNET_CRYPTO_EccSignature signature;
593 593
594 /**
595 * Source line for audio data in the other direction.
596 */
597 uint32_t source_line GNUNET_PACKED;
598
594}; 599};
595 600
596 601
@@ -645,6 +650,11 @@ struct MeshAudioMessage
645 */ 650 */
646 struct GNUNET_MessageHeader header; 651 struct GNUNET_MessageHeader header;
647 652
653 /**
654 * Target line on the receiving end.
655 */
656 uint32_t remote_line;
657
648 /* followed by audio data */ 658 /* followed by audio data */
649 659
650}; 660};