diff options
author | Yang Gu <yang.gu@intel.com> | 2010-03-05 12:45:31 +0800 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-03-10 13:14:12 -0600 |
commit | cb33d077642ad22020ea55d25dd39896db7955ba (patch) | |
tree | 06cf721695329ecedd44c9274b98fe6fca8d02bc /src/stkutil.h | |
parent | 7b663e9474d71361433f3794073ca68bf8e5f4f0 (diff) | |
download | ofono-cb33d077642ad22020ea55d25dd39896db7955ba.tar.bz2 |
Add parser for capability configuration parameters objects
Diffstat (limited to 'src/stkutil.h')
-rw-r--r-- | src/stkutil.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index 544d1048..e72b70df 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -87,7 +87,7 @@ enum stk_data_object_type { STK_DATA_OBJECT_TYPE_DURATION = 0x04, STK_DATA_OBJECT_TYPE_ALPHA_IDENTIFIER = 0x05, STK_DATA_OBJECT_TYPE_ADDRESS = 0x06, - STK_DATA_OBJECT_TYPE_CCP = 0x07, + STK_DATA_OBJECT_TYPE_CAPABILITY_CONFIGURATION_PARAMETERS = 0x07, STK_DATA_OBJECT_TYPE_SUBADDRESS = 0x08, STK_DATA_OBJECT_TYPE_SS_STRING = 0x09, STK_DATA_OBJECT_TYPE_USSD_STRING = 0x0A, @@ -205,6 +205,12 @@ struct stk_subaddress { unsigned char *subaddr; }; +/* Defined in TS 102.223 Section 8.4 */ +struct stk_capability_configuration_parameters { + unsigned int ccp_len; + unsigned char *ccp; +}; + /* * Icon ID denotes a file on the SIM filesystem. Since EF cannot have record * ids of 0, we use icon_id with 0 to denote empty icon_identifier objects |