summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/stkutil.c2
-rw-r--r--src/stkutil.h1
2 files changed, 3 insertions, 0 deletions
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);