summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2010-05-16 16:05:39 +0200
committerDenis Kenzior <denkenz@gmail.com>2010-05-25 16:52:52 -0500
commit93bd75441c59da29f5116234858cfbdc3b4d80de (patch)
tree9ced71eb430acb6c698246d03aeb3567e3b2de6d /src
parentfebeb5d9c5af3345e8758a35800dc7a4e6c5e82f (diff)
downloadofono-93bd75441c59da29f5116234858cfbdc3b4d80de.tar.bz2
stkutil: Add Send SMS response builder
Diffstat (limited to 'src')
-rw-r--r--src/stkutil.c2
-rw-r--r--src/stkutil.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/stkutil.c b/src/stkutil.c
index 6a2fbfb1..46ce4cb7 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -3208,6 +3208,8 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
&response->get_input.text,
NULL);
break;
+ case STK_COMMAND_TYPE_SEND_SMS:
+ break;
default:
return 0;
};
diff --git a/src/stkutil.h b/src/stkutil.h
index 4e46cd53..a98d677f 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 send_sms;
};
void (*destructor)(struct stk_response *response);