aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-09-13 07:45:17 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-09-14 07:05:26 +0200
commit861266777693162fdfeb54a3e1094ab05f0d3c4d (patch)
tree7fd0e49a8e93d8705840f3ef3822a3c528101e1f /src
parentf6832d72cf386eb495c5d2b988d24c1a963f71d6 (diff)
sms,sms-qmi: update timeout when sending an SMS to 30s
Diffstat (limited to 'src')
-rw-r--r--src/mm-sms-qmi.c4
-rw-r--r--src/mm-sms.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mm-sms-qmi.c b/src/mm-sms-qmi.c
index 278a0040..afa307f8 100644
--- a/src/mm-sms-qmi.c
+++ b/src/mm-sms-qmi.c
@@ -340,7 +340,7 @@ sms_send_generic (SmsSendContext *ctx)
qmi_client_wms_raw_send (ctx->client,
input,
- 5,
+ 30,
NULL,
(GAsyncReadyCallback)send_generic_ready,
ctx);
@@ -439,7 +439,7 @@ sms_send_from_storage (SmsSendContext *ctx)
qmi_client_wms_send_from_memory_storage (
ctx->client,
input,
- 5,
+ 30,
NULL,
(GAsyncReadyCallback)send_from_storage_ready,
ctx);
diff --git a/src/mm-sms.c b/src/mm-sms.c
index 90bfc68b..e65a1ca5 100644
--- a/src/mm-sms.c
+++ b/src/mm-sms.c
@@ -860,7 +860,7 @@ sms_send_next_part (SmsSendContext *ctx)
mm_sms_part_get_index ((MMSmsPart *)ctx->current->data));
mm_base_modem_at_command (ctx->modem,
cmd,
- 10,
+ 30,
FALSE,
(GAsyncReadyCallback)send_from_storage_ready,
ctx);
@@ -890,7 +890,7 @@ sms_send_next_part (SmsSendContext *ctx)
g_assert (ctx->msg_data != NULL);
mm_base_modem_at_command (ctx->modem,
cmd,
- 10,
+ 30,
FALSE,
(GAsyncReadyCallback)send_generic_ready,
ctx);