diff options
author | Dan Williams <dan@ioncontrol.co> | 2025-04-11 20:43:17 -0500 |
---|---|---|
committer | Dan Williams <dan@ioncontrol.co> | 2025-05-30 07:59:58 -0500 |
commit | 5448a85a2bae32b6c9dfb82ac148904bf20fc209 (patch) | |
tree | d3dc01eb24ab04b592195ef335d43ca8ef4c08d0 /libmm-glib/mm-call-properties.h | |
parent | 28b195465422b63ccc77e1a8d9d21e8bb6f217e9 (diff) |
call: allow setting DTMF tone duration at call creation time
Instead of hard-coding a 500ms DTMF tone duration, let applications
use a specific duration at call setup time.
Signed-off-by: Dan Williams <dan@ioncontrol.co>
Diffstat (limited to 'libmm-glib/mm-call-properties.h')
-rw-r--r-- | libmm-glib/mm-call-properties.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmm-glib/mm-call-properties.h b/libmm-glib/mm-call-properties.h index 12b4e330..1329ee3b 100644 --- a/libmm-glib/mm-call-properties.h +++ b/libmm-glib/mm-call-properties.h @@ -68,6 +68,10 @@ void mm_call_properties_set_number (MMCallProperties *self, const gchar *text); const gchar *mm_call_properties_get_number (MMCallProperties *self); +void mm_call_properties_set_dtmf_tone_duration (MMCallProperties *self, + const guint duration_ms); +guint mm_call_properties_get_dtmf_tone_duration (MMCallProperties *self); + /*****************************************************************************/ /* ModemManager/libmm-glib/mmcli specific methods */ |