diff options
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 |