From 4c4e2e9f034358e2865878ab8c1adb2e387cc6b6 Mon Sep 17 00:00:00 2001 From: Andrzej Zaborowski Date: Thu, 27 May 2010 06:59:54 +0200 Subject: [PATCH] stkutil: Add Send DTMF response builder support --- src/stkutil.c | 2 ++ src/stkutil.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/stkutil.c b/src/stkutil.c index 3b536ed8..41b12d1d 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -4084,6 +4084,8 @@ unsigned int stk_pdu_from_response(const struct stk_response *response, response->run_at_command.at_response, NULL); break; + case STK_COMMAND_TYPE_SEND_DTMF: + break; default: return 0; }; diff --git a/src/stkutil.h b/src/stkutil.h index ac462e0e..4a7a82df 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -1164,6 +1164,7 @@ struct stk_response { struct stk_response_timer_mgmt timer_mgmt; struct stk_response_generic set_up_idle_mode_text; struct stk_response_run_at_command run_at_command; + struct stk_response_generic send_dtmf; }; void (*destructor)(struct stk_response *response);