diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-04 18:32:56 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-03-04 20:45:00 +0000 |
commit | 55d60f3c1201a4eb80f82da9d2abcf503a7de3f0 (patch) | |
tree | 4ab2b8dd7a231981cb77460d64d0f31662825998 /src/mm-sms-qmi.c | |
parent | 5d176a1e61df603b74434dce9050f7a9d3139f13 (diff) |
sms: common timeout of 180s for the send operation
On low signal quality conditions, the process of sending the SMS to
the network may take a really long time, way more than the 30s used as
default in some implementations.
We now define a common timeout value of 180s for this operation in all
protocols.
Fixes https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/328
Diffstat (limited to 'src/mm-sms-qmi.c')
-rw-r--r-- | src/mm-sms-qmi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-sms-qmi.c b/src/mm-sms-qmi.c index 81c6f476..809cb26b 100644 --- a/src/mm-sms-qmi.c +++ b/src/mm-sms-qmi.c @@ -437,7 +437,7 @@ sms_send_generic (GTask *task) qmi_client_wms_raw_send (ctx->client, input, - 30, + MM_BASE_SMS_DEFAULT_SEND_TIMEOUT, NULL, (GAsyncReadyCallback)send_generic_ready, task); @@ -565,7 +565,7 @@ sms_send_from_storage (GTask *task) qmi_client_wms_send_from_memory_storage ( ctx->client, input, - 30, + MM_BASE_SMS_DEFAULT_SEND_TIMEOUT, NULL, (GAsyncReadyCallback)send_from_storage_ready, task); |