diff options
author | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2010-05-16 16:06:51 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-25 16:52:53 -0500 |
commit | d566fe2796712299a91ff204326ac2ea3d2a8e24 (patch) | |
tree | 9b2e9df980a46a11fe8ec68edb6fdc172bf4027d /src | |
parent | 0a3324f8b65ba86533c70250bcd8bb9403d9e30b (diff) | |
download | ofono-d566fe2796712299a91ff204326ac2ea3d2a8e24.tar.bz2 |
stkutil: Add Set Up Menu response builder
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 6e2153aa..6dc55a11 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -3218,6 +3218,7 @@ unsigned int stk_pdu_from_response(const struct stk_response *response, NULL); break; case STK_COMMAND_TYPE_REFRESH: + case STK_COMMAND_TYPE_SETUP_MENU: break; default: return 0; diff --git a/src/stkutil.h b/src/stkutil.h index 99c10bf5..96919f3a 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -1033,6 +1033,7 @@ struct stk_response { struct stk_response_generic play_tone; struct stk_response_poll_interval poll_interval; struct stk_response_generic refresh; + struct stk_response_generic set_up_menu; struct stk_response_generic send_sms; }; |