diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-06-10 14:47:39 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2018-06-10 14:47:39 +0200 |
commit | 588d6144a7c1da461d70abad05f4c56fd6dc667f (patch) | |
tree | f09e6306c64d8827c47068218f46bd9e4cb8b4e6 /include | |
parent | 91757f65da40054e6912c19b5984f12cac6809ab (diff) |
doc: fix explanation of MM_CALL_STATE_RINGING_{IN|OUT}
They were reversed; ringing in applies to incoming calls, ringing out
applies to outgoing calls.
Diffstat (limited to 'include')
-rw-r--r-- | include/ModemManager-enums.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h index 8f05ec00..10166d24 100644 --- a/include/ModemManager-enums.h +++ b/include/ModemManager-enums.h @@ -1283,8 +1283,8 @@ typedef enum { /*< underscore_name=mm_oma_session_state_failed_reason >*/ * MMCallState: * @MM_CALL_STATE_UNKNOWN: default state for a new outgoing call. * @MM_CALL_STATE_DIALING: outgoing call started. Wait for free channel. - * @MM_CALL_STATE_RINGING_IN: outgoing call attached to GSM network, waiting for an answer. - * @MM_CALL_STATE_RINGING_OUT: incoming call is waiting for an answer. + * @MM_CALL_STATE_RINGING_IN: incoming call is waiting for an answer. + * @MM_CALL_STATE_RINGING_OUT: outgoing call attached to GSM network, waiting for an answer. * @MM_CALL_STATE_ACTIVE: call is active between two peers. * @MM_CALL_STATE_HELD: held call (by +CHLD AT command). * @MM_CALL_STATE_WAITING: waiting call (by +CCWA AT command). |