diff options
author | Dan Williams <dcbw@redhat.com> | 2012-01-09 12:40:30 -0600 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:48 +0100 |
commit | cb2d6d610524f32fd95633e4a491ba88f983e956 (patch) | |
tree | fa36de9d8a72f2ff94cb93cdf76ec5fcae20ac63 /src/mm-base-modem-at.c | |
parent | 4e06e0e67d1f4180e0ea2c86aae3f63701c176d7 (diff) |
base-modem-at: indicate sequence status to response parsers
Let parsers know if this command is the last in a sequence since
they may want to handle errors differently if that's the case.
Diffstat (limited to 'src/mm-base-modem-at.c')
-rw-r--r-- | src/mm-base-modem-at.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mm-base-modem-at.c b/src/mm-base-modem-at.c index 4ecb64de..cd0565c3 100644 --- a/src/mm-base-modem-at.c +++ b/src/mm-base-modem-at.c @@ -140,12 +140,15 @@ at_sequence_parse_response (MMAtSerialPort *port, /* No need to process response, go on to next command */ continue_sequence = TRUE; else { + const MMBaseModemAtCommand *next = ctx->current + 1; + /* Response processor will tell us if we need to keep on the sequence */ continue_sequence = !ctx->current->response_processor ( ctx->self, ctx->response_processor_context, ctx->current->command, response->str, + next->command ? FALSE : TRUE, /* Last command in sequence? */ error, &result, &result_error); @@ -300,6 +303,7 @@ mm_base_modem_response_processor_string (MMBaseModem *self, gpointer none, const gchar *command, const gchar *response, + gboolean last_command, const GError *error, GVariant **result, GError **result_error) @@ -318,6 +322,7 @@ mm_base_modem_response_processor_no_result (MMBaseModem *self, gpointer none, const gchar *command, const gchar *response, + gboolean last_command, const GError *error, GVariant **result, GError **result_error) @@ -336,6 +341,7 @@ mm_base_modem_response_processor_no_result_continue (MMBaseModem *self, gpointer none, const gchar *command, const gchar *response, + gboolean last_command, const GError *error, GVariant **result, GError **result_error) |