From 64b0af24bd062ee8ac9c5d8310978c86e752918e Mon Sep 17 00:00:00 2001 From: Jeevaka Badrappan Date: Thu, 16 Sep 2010 21:40:07 -0700 Subject: [PATCH] stk: Language Notification proactive cmd support --- src/stk.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/stk.c b/src/stk.c index 6c64b77c..5706dbb2 100644 --- a/src/stk.c +++ b/src/stk.c @@ -1911,6 +1911,17 @@ void ofono_stk_proactive_command_notify(struct ofono_stk *stk, &rsp, stk); break; + case STK_COMMAND_TYPE_LANGUAGE_NOTIFICATION: + /* + * If any clients are interested, then the ISO639 + * 2-letter codes has to be convered to language strings. + * Converted language strings has to be added to the + * property list. + */ + ofono_info("Language Code: %s", + stk->pending_cmd->language_notification.language); + break; + default: rsp.result.type = STK_RESULT_TYPE_COMMAND_NOT_UNDERSTOOD; break;