This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
rab_upper_layer_reconfiguration_message_content.py
60 lines (55 loc) · 2.53 KB
/
rab_upper_layer_reconfiguration_message_content.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: UTF-8 -*-
#/**
# * Software Name : pycrate
# * Version : 0.4
# *
# * Copyright 2018. Benoit Michau. P1sec.
# *
# * This library is free software; you can redistribute it and/or
# * modify it under the terms of the GNU Lesser General Public
# * License as published by the Free Software Foundation; either
# * version 2.1 of the License, or (at your option) any later version.
# *
# * This library is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# * Lesser General Public License for more details.
# *
# * You should have received a copy of the GNU Lesser General Public
# * License along with this library; if not, write to the Free Software
# * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# * MA 02110-1301 USA
# *
# *--------------------------------------------------------
# * File Name : pycrate_gmr1_csn1/rab_upper_layer_reconfiguration_message_content.py
# * Created : 2023-10-24
# * Authors : Benoit Michau
# *--------------------------------------------------------
#*/
# specification: ETSI TS 101 376-04-13
# section: 9.2.27a RAB UPPER LAYER RECONFIGURATION
# top-level object: RAB UPPER LAYER RECONFIGURATION message content
# external references
from pycrate_gmr1_csn1.rrc_transaction_identifier_ie import rrc_transaction_identifier_ie
from pycrate_gmr1_csn1.rab_identity_ie import rab_identity_ie
from pycrate_gmr1_csn1.upper_layer_bearer_info_ie import upper_layer_bearer_info_ie
from pycrate_gmr1_csn1.integrity_check_info_ie import integrity_check_info_ie
# code automatically generated by pycrate_csn1
# change object type with type=CSN1T_BSTR (default type is CSN1T_UINT) in init
# add dict for value interpretation with dic={...} in CSN1Bit init
# add dict for key interpretation with kdic={...} in CSN1Alt init
from pycrate_csn1.csnobj import *
rab_upper_layer_reconfiguration_message_content = CSN1List(name='rab_upper_layer_reconfiguration_message_content', list=[
CSN1Val(name='', val='0'),
CSN1List(list=[
CSN1Ref(name='rrc_transaction_identifier', obj=rrc_transaction_identifier_ie),
CSN1Alt(alt={
'0': ('', []),
'1': ('', [
CSN1Ref(name='integrity_check_info', obj=integrity_check_info_ie)])}),
CSN1Ref(name='rab_to_reconfigure', obj=rab_identity_ie),
CSN1Bit(name='reconfigured_link_direction', bit=2),
CSN1Alt(alt={
'0': ('', []),
'1': ('', [
CSN1Ref(name='upper_layer_bearer_info', obj=upper_layer_bearer_info_ie)])})])])