diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-07 13:08:43 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:22 +0100 |
commit | ef2b1cf030e257ff93ada4a5397425d192df1805 (patch) | |
tree | 2fd7aca7d403a6a6bdb6b2af2e4c7c51592f2be2 /src/mm-base-modem-at.c | |
parent | 5a485d74a20a57498d06db09b621af93b433d7e2 (diff) |
at-serial-port: allow cancelling the response timeout
Diffstat (limited to 'src/mm-base-modem-at.c')
-rw-r--r-- | src/mm-base-modem-at.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mm-base-modem-at.c b/src/mm-base-modem-at.c index cd0565c3..820063b8 100644 --- a/src/mm-base-modem-at.c +++ b/src/mm-base-modem-at.c @@ -172,6 +172,7 @@ at_sequence_parse_response (MMAtSerialPort *port, ctx->port, ctx->current->command, ctx->current->timeout, + ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); else @@ -179,6 +180,7 @@ at_sequence_parse_response (MMAtSerialPort *port, ctx->port, ctx->current->command, ctx->current->timeout, + ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); return; @@ -244,6 +246,7 @@ mm_base_modem_at_sequence_in_port (MMBaseModem *self, ctx->port, ctx->current->command, ctx->current->timeout, + ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); } @@ -450,6 +453,7 @@ mm_base_modem_at_command_in_port (MMBaseModem *self, port, command, timeout, + ctx->cancellable, (MMAtSerialResponseFn)at_command_parse_response, ctx); else @@ -457,6 +461,7 @@ mm_base_modem_at_command_in_port (MMBaseModem *self, port, command, timeout, + ctx->cancellable, (MMAtSerialResponseFn)at_command_parse_response, ctx); } |