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-at-serial-port.c | |
parent | 5a485d74a20a57498d06db09b621af93b433d7e2 (diff) |
at-serial-port: allow cancelling the response timeout
Diffstat (limited to 'src/mm-at-serial-port.c')
-rw-r--r-- | src/mm-at-serial-port.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mm-at-serial-port.c b/src/mm-at-serial-port.c index 2e851464..f795bdd5 100644 --- a/src/mm-at-serial-port.c +++ b/src/mm-at-serial-port.c @@ -281,6 +281,7 @@ void mm_at_serial_port_queue_command (MMAtSerialPort *self, const char *command, guint32 timeout_seconds, + GCancellable *cancellable, MMAtSerialResponseFn callback, gpointer user_data) { @@ -297,7 +298,7 @@ mm_at_serial_port_queue_command (MMAtSerialPort *self, buf, TRUE, timeout_seconds, - NULL, + cancellable, (MMSerialResponseFn) callback, user_data); } @@ -306,6 +307,7 @@ void mm_at_serial_port_queue_command_cached (MMAtSerialPort *self, const char *command, guint32 timeout_seconds, + GCancellable *cancellable, MMAtSerialResponseFn callback, gpointer user_data) { @@ -322,7 +324,7 @@ mm_at_serial_port_queue_command_cached (MMAtSerialPort *self, buf, TRUE, timeout_seconds, - NULL, + cancellable, (MMSerialResponseFn) callback, user_data); } |