diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-14 10:47:14 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-14 10:47:14 +0100 |
commit | 914cda5de3fb61e517106ea01fdd1021b00493b8 (patch) | |
tree | 055e4844a833aa49d0588ecf6bdb490c52758d88 /src | |
parent | c1ef36b860931d32bd216af85d143b061913f2ce (diff) |
bearer-qmi: wait longer for the 'Stop Network' reply
The 'Stop Network' reply may really take more than 10s to arrive; so let's wait
some more time, 30s, before falling back.
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-bearer-qmi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-bearer-qmi.c b/src/mm-bearer-qmi.c index 9523a1c9..7085cc4e 100644 --- a/src/mm-bearer-qmi.c +++ b/src/mm-bearer-qmi.c @@ -1071,7 +1071,7 @@ disconnect_context_step (DisconnectContext *ctx) ctx->running_ipv6 = FALSE; qmi_client_wds_stop_network (ctx->client_ipv4, input, - 10, + 30, NULL, (GAsyncReadyCallback)stop_network_ready, ctx); @@ -1092,7 +1092,7 @@ disconnect_context_step (DisconnectContext *ctx) ctx->running_ipv6 = TRUE; qmi_client_wds_stop_network (ctx->client_ipv6, input, - 10, + 30, NULL, (GAsyncReadyCallback)stop_network_ready, ctx); |