diff options
author | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2010-05-16 16:06:01 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-25 16:52:53 -0500 |
commit | a732863c874baabe9a6c547825bd0daa7bc0b893 (patch) | |
tree | 513f3b9dd120b539d92898bb91d0c964e2dba724 /src | |
parent | 6da5a6ce0955831d5750f3012e41fcdae79db181 (diff) | |
download | ofono-a732863c874baabe9a6c547825bd0daa7bc0b893.tar.bz2 |
stkutil: Add Play Tone response builder support
Diffstat (limited to 'src')
-rw-r--r-- | src/stkutil.c | 1 | ||||
-rw-r--r-- | src/stkutil.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/stkutil.c b/src/stkutil.c index 46ce4cb7..a0bcf676 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -3209,6 +3209,7 @@ unsigned int stk_pdu_from_response(const struct stk_response *response, NULL); break; case STK_COMMAND_TYPE_SEND_SMS: + case STK_COMMAND_TYPE_PLAY_TONE: break; default: return 0; diff --git a/src/stkutil.h b/src/stkutil.h index a98d677f..342f40b9 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -1026,6 +1026,7 @@ struct stk_response { struct stk_response_generic display_text; struct stk_response_get_inkey get_inkey; struct stk_response_get_input get_input; + struct stk_response_generic play_tone; struct stk_response_generic send_sms; }; |