blob: d9b771d5f637f1f14d0fed3a8dc5d9857a4c99b6 [file] [log] [blame]
Supreeth Herle8b72c272020-03-22 08:55:50 +01001# -*- coding: utf-8 -*-
2
3"""
4Various constants from ETSI TS 131 103 V14.2.0
5"""
6
7#
8# Copyright (C) 2020 Supreeth Herle <herlesupreeth@gmail.com>
9#
10# This program is free software: you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation, either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program. If not, see <http://www.gnu.org/licenses/>.
22#
23
24# Mapping between ISIM Service Number and its description
25EF_IST_map = {
26 1: 'P-CSCF address',
27 2: 'Generic Bootstrapping Architecture (GBA)',
28 3: 'HTTP Digest',
29 4: 'GBA-based Local Key Establishment Mechanism',
30 5: 'Support of P-CSCF discovery for IMS Local Break Out',
31 6: 'Short Message Storage (SMS)',
32 7: 'Short Message Status Reports (SMSR)',
33 8: 'Support for SM-over-IP including data download via SMS-PP as defined in TS 31.111 [31]',
34 9: 'Communication Control for IMS by ISIM',
35 10: 'Support of UICC access to IMS',
36 11: 'URI support by UICC',
37 12: 'Media Type support',
38 13: 'IMS call disconnection cause',
39 14: 'URI support for MO SHORT MESSAGE CONTROL',
40 15: 'MCPTT',
41 16: 'URI support for SMS-PP DOWNLOAD as defined in 3GPP TS 31.111 [31]',
42 17: 'From Preferred',
43 18: 'IMS configuration data',
Supreeth Herle28484d02020-03-25 15:00:20 +010044 19: 'XCAP Configuration Data',
45 20: 'WebRTC URI',
Supreeth Herle8b72c272020-03-22 08:55:50 +010046}
herlesupreeth75c14c02020-12-23 09:41:07 +010047
48EF_ISIM_ADF_map = {
49 'IST': '6F07',
50 'IMPI': '6F02',
51 'DOMAIN': '6F03',
52 'IMPU': '6F04',
53 'AD': '6FAD',
54 'ARR': '6F06',
55 'PCSCF': '6F09',
56 'GBAP': '6FD5',
57 'GBANL': '6FD7',
58 'NAFKCA': '6FDD',
59 'UICCIARI': '6FE7',
60 'SMS': '6F3C',
61 'SMSS': '6F43',
62 'SMSR': '6F47',
63 'SMSP': '6F42',
64 'FromPreferred': '6FF7',
65 'IMSConfigData': '6FF8',
66 'XCAPConfigData': '6FFC',
67 'WebRTCURI': '6FFA'
68}