---
 src/stkutil.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/stkutil.c b/src/stkutil.c
index 2227d31..3aaab37 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -2594,6 +2594,18 @@ static gboolean parse_refresh(struct stk_command 
*command,
        return TRUE;
 }
 
+static gboolean parse_polling_off(struct stk_command *command,
+                                       struct comprehension_tlv_iter *iter)
+{
+       if (command->src != STK_DEVICE_IDENTITY_TYPE_UICC)
+               return FALSE;
+
+       if (command->dst != STK_DEVICE_IDENTITY_TYPE_TERMINAL)
+               return FALSE;
+
+       return TRUE;
+}
+
 struct stk_command *stk_command_new_from_pdu(const unsigned char *pdu,
                                                unsigned int len)
 {
@@ -2685,6 +2697,9 @@ struct stk_command *stk_command_new_from_pdu(const 
unsigned char *pdu,
        case STK_COMMAND_TYPE_REFRESH:
                ok = parse_refresh(command, &iter);
                break;
+       case STK_COMMAND_TYPE_POLLING_OFF:
+               ok = parse_polling_off(command, &iter);
+               break;
        default:
                ok = FALSE;
                break;
-- 
1.7.0.4

_______________________________________________
ofono mailing list
[email protected]
http://lists.ofono.org/listinfo/ofono

Reply via email to