diff options
author | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2010-05-27 06:59:54 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-28 11:37:39 -0500 |
commit | 4c4e2e9f034358e2865878ab8c1adb2e387cc6b6 (patch) | |
tree | 3ced7e8f71fa926e85c7554eaa4d3cfb00fb2106 | |
parent | b1e35794172f1907834dfe5a81c19d4a91c8bfae (diff) | |
download | ofono-4c4e2e9f034358e2865878ab8c1adb2e387cc6b6.tar.bz2 |
stkutil: Add Send DTMF response builder support
-rw-r--r-- | src/stkutil.c | 2 | ||||
-rw-r--r-- | src/stkutil.h | 1 |
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); |