blob: 0d08fe6143bec6eb10faf13993d0a5138f0cde71 [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',
45 19: 'XCAP Configuration Data'
46}
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}