aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_applications.h11
-rw-r--r--src/include/gnunet_protocols.h24
2 files changed, 35 insertions, 0 deletions
diff --git a/src/include/gnunet_applications.h b/src/include/gnunet_applications.h
index bbeb75547..56e45b72e 100644
--- a/src/include/gnunet_applications.h
+++ b/src/include/gnunet_applications.h
@@ -86,6 +86,17 @@ extern "C"
86 */ 86 */
87#define GNUNET_APPLICATION_TYPE_SCALARPRODUCT 20 87#define GNUNET_APPLICATION_TYPE_SCALARPRODUCT 20
88 88
89/**
90 * Conversation control data.
91 */
92#define GNUNET_APPLICATION_TYPE_CONVERSATION_CONTROL 21
93
94/**
95 * Conversation audio data.
96 */
97#define GNUNET_APPLICATION_TYPE_CONVERSATION_AUDIO 22
98
99
89#if 0 /* keep Emacsens' auto-indent happy */ 100#if 0 /* keep Emacsens' auto-indent happy */
90{ 101{
91#endif 102#endif
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index afc56cfe2..4d07c7712 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -2271,6 +2271,30 @@ extern "C"
2271 */ 2271 */
2272#define GNUNET_MESSAGE_TYPE_CONVERSATION_CS_AUDIO 737 2272#define GNUNET_MESSAGE_TYPE_CONVERSATION_CS_AUDIO 737
2273 2273
2274/**
2275 * Mesh: call initiation
2276 */
2277#define GNUNET_MESSAGE_TYPE_CONVERSATION_MESH_PHONE_RING 738
2278
2279/**
2280 * Mesh: hang up / refuse call
2281 */
2282#define GNUNET_MESSAGE_TYPE_CONVERSATION_MESH_PHONE_HANG_UP 739
2283
2284/**
2285 * Mesh: pick up phone (establish audio channel)
2286 */
2287#define GNUNET_MESSAGE_TYPE_CONVERSATION_MESH_PHONE_PICK_UP 740
2288
2289/**
2290 * Mesh: phone is busy (refuse nicely)
2291 */
2292#define GNUNET_MESSAGE_TYPE_CONVERSATION_MESH_PHONE_BUSY 741
2293
2294/**
2295 * Mesh: audio data
2296 */
2297#define GNUNET_MESSAGE_TYPE_CONVERSATION_MESH_AUDIO 742
2274 2298
2275 2299
2276/******************************************************************************* 2300/*******************************************************************************