aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-02-22 17:47:25 +0100
committerAleksander Morgado <aleksander@lanedo.com>2013-02-22 17:47:25 +0100
commitb22bba509aced5aee4da2094fb9a0ff40d2a2cd2 (patch)
treef1770e2c92a2340b12a751baa4f704df94f81316 /src
parent50ecf2a7d91221ea1db4a26e26222c048062a7a2 (diff)
broadband-modem: increase default AT command timeout for USSD operations
May really take more than 3s.
Diffstat (limited to 'src')
-rw-r--r--src/mm-broadband-modem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c
index 99011b6c..ab26b345 100644
--- a/src/mm-broadband-modem.c
+++ b/src/mm-broadband-modem.c
@@ -4071,7 +4071,7 @@ modem_3gpp_ussd_cancel (MMIfaceModem3gppUssd *self,
mm_base_modem_at_command (MM_BASE_MODEM (self),
"+CUSD=2",
- 3,
+ 10,
TRUE,
(GAsyncReadyCallback)cancel_command_ready,
result);
@@ -4186,7 +4186,7 @@ modem_3gpp_ussd_context_send_encoded (Modem3gppUssdSendContext *ctx)
mm_base_modem_at_command (MM_BASE_MODEM (ctx->self),
at_command,
- 3,
+ 10,
FALSE,
(GAsyncReadyCallback)ussd_send_command_ready,
ctx);
@@ -4206,7 +4206,7 @@ modem_3gpp_ussd_context_send_unencoded (Modem3gppUssdSendContext *ctx)
MM_MODEM_GSM_USSD_SCHEME_7BIT);
mm_base_modem_at_command (MM_BASE_MODEM (ctx->self),
at_command,
- 3,
+ 10,
FALSE,
(GAsyncReadyCallback)ussd_send_command_ready,
ctx);