diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-07-15 16:04:58 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-07-19 17:47:51 +0200 |
commit | 9263e79dc341f7b698721d859ed6a4141718e9f6 (patch) | |
tree | 7dd34c4d2d99e14ded466cc0e7c615b5120732ce /introspection | |
parent | 0c921bbc94b466464b97f33d7f54c64c768402eb (diff) |
api,voice: new CallWaitingSetup() and CallWaitingQuery() methods
These new methods allow querying and updating the status of the call
waiting network service, as per 3GPP TS 22.083.
The status of the service is not a property because we don't want to
unconditionally load it on every boot, given that the process involves
talking to the network (i.e. it is not a device setting).
Diffstat (limited to 'introspection')
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Modem.Voice.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml b/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml index 4650b22e..d39081c0 100644 --- a/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml +++ b/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml @@ -124,6 +124,32 @@ <method name="Transfer" /> <!-- + CallWaitingSetup: + + Activates or deactivates the call waiting network service, as per + 3GPP TS 22.083. + + This operation requires communication with the network in order to + complete, so the modem must be successfully registered. + --> + <method name="CallWaitingSetup"> + <arg name="enable" type="b" direction="in" /> + </method> + + <!-- + CallWaitingQuery: + + Queries the status of the call waiting network service, as per + 3GPP TS 22.083. + + This operation requires communication with the network in order to + complete, so the modem must be successfully registered. + --> + <method name="CallWaitingQuery"> + <arg name="status" type="b" direction="out" /> + </method> + + <!-- CallAdded: @path: Object path of the new call. |