summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-13 18:48:18 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-13 10:53:40 -0500
commit5b030c4a19baaef1bcc63df1e9955360a769aaea (patch)
treed0fa894de51f382774ea65c9c58a3b28c05e830f /src/stkutil.h
parentbf7afc6130e9787dc95d81aba2a2f9b97efa3a53 (diff)
downloadofono-5b030c4a19baaef1bcc63df1e9955360a769aaea.tar.bz2
stk: Add poll interval proactive command parser
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 2d34ca4d..02451b44 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -824,6 +824,10 @@ struct stk_command_play_tone {
struct stk_frame_id frame_id;
};
+struct stk_command_poll_interval {
+ struct stk_duration duration;
+};
+
struct stk_command_send_sms {
char *alpha_id;
struct stk_address address;
@@ -847,6 +851,7 @@ struct stk_command {
struct stk_command_get_input get_input;
struct stk_command_play_tone play_tone;
struct stk_command_send_sms send_sms;
+ struct stk_command_poll_interval poll_interval;
};
void (*destructor)(struct stk_command *command);