diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-08-10 13:51:39 +0200 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2018-10-16 17:09:21 +0000 |
commit | 17c511ec6955d07af431bf2012e274c9b3ce3d48 (patch) | |
tree | 8db72c4a5d68548bf6a3fdd7dc0b2c20fdd40007 | |
parent | 627303a748cce7274b05a6861a1dc0c779d9263a (diff) |
api,call: new state reason to report audio setup failures
-rw-r--r-- | include/ModemManager-enums.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h index aac31d49..cc78cdc9 100644 --- a/include/ModemManager-enums.h +++ b/include/ModemManager-enums.h @@ -1354,8 +1354,9 @@ typedef enum { /*< underscore_name=mm_call_state >*/ * @MM_CALL_STATE_REASON_INCOMING_NEW: Received a new incoming call. * @MM_CALL_STATE_REASON_ACCEPTED: Dialing or Ringing call is accepted. * @MM_CALL_STATE_REASON_TERMINATED: Call is correctly terminated. - * @MM_CALL_STATE_REASON_REFUSED_OR_BUSY: Remote peer is busy or refused call + * @MM_CALL_STATE_REASON_REFUSED_OR_BUSY: Remote peer is busy or refused call. * @MM_CALL_STATE_REASON_ERROR: Wrong number or generic network error. + * @MM_CALL_STATE_REASON_AUDIO_SETUP_FAILED: Error setting up audio channel. */ typedef enum { /*< underscore_name=mm_call_state_reason >*/ MM_CALL_STATE_REASON_UNKNOWN = 0, @@ -1364,7 +1365,8 @@ typedef enum { /*< underscore_name=mm_call_state_reason >*/ MM_CALL_STATE_REASON_ACCEPTED = 3, MM_CALL_STATE_REASON_TERMINATED = 4, MM_CALL_STATE_REASON_REFUSED_OR_BUSY = 5, - MM_CALL_STATE_REASON_ERROR = 6 + MM_CALL_STATE_REASON_ERROR = 6, + MM_CALL_STATE_REASON_AUDIO_SETUP_FAILED = 7 } MMCallStateReason; /** |