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