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-mbim.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-mbim.c')
-rw-r--r-- | src/mm-sms-mbim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-sms-mbim.c b/src/mm-sms-mbim.c index 792d37c4..acbbee44 100644 --- a/src/mm-sms-mbim.c +++ b/src/mm-sms-mbim.c @@ -175,7 +175,7 @@ sms_send_next_part (GTask *task) NULL); mbim_device_command (ctx->device, message, - 30, + MM_BASE_SMS_DEFAULT_SEND_TIMEOUT, NULL, (GAsyncReadyCallback)sms_send_set_ready, task); |