aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_conversation_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-03 16:09:13 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-03 16:09:13 +0000
commitec3d41bc58ed32ab7678d0b5f04e956d1cf97afc (patch)
tree60b186ada6a7f1a7a7e31806d69aab7ab81d5f00 /src/include/gnunet_conversation_service.h
parentb7ab6c6faaab407d80a3fb4729fc2746555b5010 (diff)
downloadgnunet-ec3d41bc58ed32ab7678d0b5f04e956d1cf97afc.tar.gz
gnunet-ec3d41bc58ed32ab7678d0b5f04e956d1cf97afc.zip
-more work on call API
Diffstat (limited to 'src/include/gnunet_conversation_service.h')
-rw-r--r--src/include/gnunet_conversation_service.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/include/gnunet_conversation_service.h b/src/include/gnunet_conversation_service.h
index d4a48b2b8..098cec9ab 100644
--- a/src/include/gnunet_conversation_service.h
+++ b/src/include/gnunet_conversation_service.h
@@ -259,17 +259,22 @@ enum GNUNET_CONVERSATION_EventCode
259 * a `const char *`. The caller ID will be a GNS name. 259 * a `const char *`. The caller ID will be a GNS name.
260 */ 260 */
261 GNUNET_CONVERSATION_EC_RING, 261 GNUNET_CONVERSATION_EC_RING,
262
263 /**
264 * The phone is busy. Varargs will be empty.
265 */
266 GNUNET_CONVERSATION_EC_BUSY,
267 262
268 /** 263 /**
269 * We are ready to talk, metadata about the call may be supplied 264 * We are ready to talk, metadata about the call may be supplied
270 * as a `const char *` in the varargs. 265 * as a `const char *` in the varargs.
271 */ 266 */
272 GNUNET_CONVERSATION_EC_READY, 267 GNUNET_CONVERSATION_EC_READY,
268
269 /**
270 * We failed to locate a phone record in GNS.
271 */
272 GNUNET_CONVERSATION_EC_GNS_FAIL,
273
274 /**
275 * The phone is busy. Varargs will be empty.
276 */
277 GNUNET_CONVERSATION_EC_BUSY,
273 278
274 /** 279 /**
275 * The conversation was terminated, a reason may be supplied 280 * The conversation was terminated, a reason may be supplied
@@ -410,7 +415,7 @@ GNUNET_CONVERSATION_call_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
410 * reason given to the other user for why we hung up 415 * reason given to the other user for why we hung up
411 */ 416 */
412void 417void
413GNUNET_CONVERSATION_call_stop (const struct GNUNET_CONVERSATION_Call *call, 418GNUNET_CONVERSATION_call_stop (struct GNUNET_CONVERSATION_Call *call,
414 const char *reason); 419 const char *reason);
415 420
416 421