summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2010-05-27 06:59:48 +0200
committerDenis Kenzior <denkenz@gmail.com>2010-05-28 11:29:48 -0500
commit268ac562eb5171fbb360858b5c2efcf493b6dfa0 (patch)
tree607549555b59c32f023024694c840f1e02aed0f3 /src/stkutil.h
parent8d863b6250705b3f7755f07e6677522c84390d60 (diff)
downloadofono-268ac562eb5171fbb360858b5c2efcf493b6dfa0.tar.bz2
stkutil: Add the Timer Management response builder
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index caadf652..153da658 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -643,6 +643,7 @@ struct stk_r_apdu {
/* Defined in TS 102.223 Section 8.38 */
struct stk_timer_value {
+ ofono_bool_t has_value;
unsigned char hour;
unsigned char minute;
unsigned char second;
@@ -1129,6 +1130,11 @@ struct stk_response_local_info {
};
};
+struct stk_response_timer_mgmt {
+ unsigned char id;
+ struct stk_timer_value value;
+};
+
struct stk_response {
unsigned char number;
unsigned char type;
@@ -1151,6 +1157,7 @@ struct stk_response {
struct stk_response_generic polling_off;
struct stk_response_local_info provide_local_info;
struct stk_response_generic set_up_event_list;
+ struct stk_response_timer_mgmt timer_mgmt;
};
void (*destructor)(struct stk_response *response);