Ejemplo n.º 1
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Type4_LV('QoS', ReprName='Requested QoS', V=QoS()),
         Type4_LV('LinkedTI', V='\0'),
         Type4_TLV('TFT', ReprName='Traffic flow template', T=0x36, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80')
         ])
     self._post_init(with_options, **kwargs)
Ejemplo n.º 2
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Type3_TV('LLC_SAPI', ReprName='Requested LLC service access point id',
                  T=0x32, V='\0', Len=1),
         Type4_TLV('QoS', ReprName='New QoS', T=0x30, V=QoS()),
         Type4_TLV('TFT', ReprName='New traffic flow template', T=0x31, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80')
         ])
     self._post_init(with_options, **kwargs)
Ejemplo n.º 3
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Type4_TLV('QoS', ReprName='Negociated QoS', T=0x30, V=QoS()),
         Type3_TV('LLC_SAPI', ReprName='Negociated LLC service access point id',
                  T=0x32, V='\0', Len=1),
         Type1_TV('RadioPrio', ReprName='New padio priority', T=0x8, V=1),
         Type4_TLV('PFlowID', ReprName='Packet flow id', T=0x34, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80')
         ])
     self._post_init(with_options, **kwargs)
Ejemplo n.º 4
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Int('LLC_SAPI', ReprName='Negociated LLC service access point id',
             Pt=0, Type='uint8', Dict=LLCSAPI_dict),
         Type4_LV('QoS', ReprName='Negociated QoS', V=QoS()),
         Bit('spare', Pt=0, BitLen=4),
         Bit('RadioPrio', ReprName='Radio priority', Pt=1, BitLen=4),
         Type4_TLV('PFlowID', ReprName='Packet flow id', T=0x34, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80')
         ])
     self._post_init(with_options, **kwargs)
Ejemplo n.º 5
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Int('NSAPI', ReprName='Requested network access point id',
             Pt=5, Type='uint8'),
         Int('LLC_SAPI', ReprName='Requested LLC service access point id',
             Pt=0, Type='uint8', Dict=LLCSAPI_dict),
         Type4_LV('QoS', ReprName='Requested QoS', V=QoS()),
         Type4_LV('LinkedTI', V='\0'),
         Type4_TLV('TFT', ReprName='Traffic flow template', T=0x36, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80')
         ])
     self._post_init(with_options, **kwargs)
Ejemplo n.º 6
0
 def __init__(self, with_options=True, **kwargs):
     Layer3.__init__(self)
     self.extend([ \
         Int('NSAPI', ReprName='Requested Network Access Point ID',
             Pt=5, Type='uint8'),
         Int('LLC_SAPI', ReprName='Requested LLC Service Access Point ID',
             Pt=0, Type='uint8', Dict=LLCSAPI_dict),
         Type4_LV('QoS', ReprName='Requested QoS', V=QoS()),
         Type4_LV('PDPAddr', ReprName='Requested PDP Address', V='\0\x01'),
         Type4_TLV('APN', ReprName='Access Point Name', T=0x28, V='\0'),
         Type4_TLV('ProtConfig', ReprName='Protocol Config Options',
                   T=0x27, V='\x80'),
         Type1_TV('ReqType', ReprName='Request type', T=0xA, V=1,
                  Dict=RequestType_dict)
         ])
     self._post_init(with_options, **kwargs)