Lines Matching full:ie
22 ie = gtp.IE_list[1]
23 assert ie.APN == b"super"
43 ie = gtp.IE_list[0]
44 ie.IMSI == b"2080112345670000"
47 ie = IE_IMSI(ietype='IMSI', length=8, IMSI='2080112345670000')
48 ie.ietype == 1 and ie.IMSI == b'2080112345670000'
49 assert bytes(ie) == b'\x01\x00\x08\x00\x02\x08\x112Tv\x00\x00'
54 ie = gtp.IE_list[0]
55 ie.Cause == 16
58 ie = IE_Cause(
60 ie.ietype == 2 and ie.Cause == 16 and ie.PCE == 1 and ie.BCE == 0 and ie.CS == 0
63 ie = IE_Cause(
65 ie.ietype == 2 and ie.Cause == 16 and ie.PCE == 0 and ie.BCE == 1 and ie.CS == 0
68 ie = IE_Cause(
70 ie.ietype == 2 and ie.Cause == 16 and ie.PCE == 0 and ie.BCE == 0 and ie.CS == 1
75 ie = gtp.IE_list[0]
76 ie.ietype == 3 and ie.restart_counter == 13
79 ie = IE_RecoveryRestart(
81 ie.ietype == 3 and ie.restart_counter == 17
86 ie = gtp.IE_list[7]
87 ie.APN == b'aaaaaaaaaaaaaaaaaaaaaaaaa'
90 ie = IE_APN(ietype='APN', length=26, APN='aaaaaaaaaaaaaaaaaaaaaaaaa')
91 ie.ietype == 71 and ie.APN == b'aaaaaaaaaaaaaaaaaaaaaaaaa'
92 assert bytes(ie) == b'G\x00\x1a\x00\x19aaaaaaaaaaaaaaaaaaaaaaaaa'
97 ie = gtp.IE_list[11]
98 ie.AMBR_Uplink == 5888 and ie.AMBR_Downlink == 42000
101 ie = IE_AMBR(
103 ie.ietype == 72 and ie.AMBR_Uplink == 5888 and ie.AMBR_Downlink == 42000
108 ie = gtp.IE_list[2]
109 ie.EBI == 50
112 ie = IE_EPSBearerID(ietype='EPS Bearer ID', length=1, EBI=50)
113 ie.ietype == 73 and ie.EBI == 50
118 ie = gtp.IE_list[6]
119 ie.address == '127.0.0.4'
122 ie = IE_IP_Address(ietype='IP Address', length=4, address='127.0.0.4')
123 ie.ietype == 74 and ie.address == '127.0.0.4'
128 ie = gtp.IE_list[1]
129 ie.MEI == b"17567547897068"
132 ie = IE_MEI(ietype='MEI', length=1, MEI=175675478970685)
133 ie.ietype == 75 and ie.MEI == 175675478970685
138 ie = gtp.IE_list[1]
139 ie.digits == b'111111111111'
142 ie = IE_MSISDN(ietype='MSISDN', length=6, digits='111111111111')
143 ie.ietype == 76 and ie.digits == b'111111111111'
144 assert bytes(ie) == b'L\x00\x06\x00\x11\x11\x11\x11\x11\x11'
149 ie = gtp.IE_list[10]
150 ie.DAF == 0 and ie.DTF == 0 and ie.PS == 1 and ie.CCRSI == 0 and ie.CPRAI == 0 and ie.PPON == 0 and…
153 ie = IE_Indication(ietype='Indication', length=8, PS=1, CPRAI=1)
154 ie.ietype == 77 and ie.PS == 1 and ie.CPRAI == 1
157 ie = IE_Indication(ietype='Indication', length=8, DTF=1, PPSI=1)
158 ie.ietype == 77 and ie.DTF == 1 and ie.PPSI == 1
163 ie = gtp.IE_list[5]
164 ie.Protocols[0].address == '10.42.0.3'
167 ie = IE_PCO(ietype='Protocol Configuration Options', length=8, Extension=1, PPP=3, Protocols=[
169 ie.Extension == 1 and ie.PPP == 3 and ie.Protocols[0].address == '10.42.0.3'
174 ie = gtp.IE_list[0]
175 ie.Protocols[0].type == 27
178 ie = IE_EPCO(Protocols=[PCO_S_Nssai(type=27, length=0)], ietype=197, length=4, CR_flag=0, instance=…
179 ie.Extension == 1 and ie.ietype == 197 and ie.Protocols[0].type == 27 and ie.Protocols[0].length ==…
184 ie = gtp.IE_list[0]
185 ie.Protocols[0].type == 12 and ie.Protocols[1].type == 18 and ie.Protocols[2].type == 13
188 ie = IE_APCO(Protocols=[PCO_P_CSCF_IPv4_Address_Request(address=None, type=12, length=0),PCO_P_CSCF…
189 ie.extension == 1 and ie.ietype == 163 and ie.length == 10 and ie.Protocols[0].type == 12 and ie.Pr…
194 ie = gtp.IE_list[0]
195 ie.Sec_Mode == 4 and ie.Nhi == 0 and ie.Drxi == 1 and ie.Ksi == 0 and ie.Num_quint == 0 and ie.Num_…
198 ie = IE_MMContext_EPS(ietype=107, length=70, CR_flag=0, instance=0, Sec_Mode=4, Nhi=0, Drxi=1, Ksi=…
199 ie.Sec_Mode == 4 and ie.Nhi == 0 and ie.Drxi == 1 and ie.Ksi == 0 and ie.Num_quint == 0 and ie.Num_…
204 ie = gtp.IE_list[1].IE_list[0]
205 ie.fqdn_tr_bit == 4 and ie.fqdn == b'pgw1'
208 ie = IE_PDNConnection(IE_list=[IE_FQDN(ietype=136, length=5, CR_flag=0, instance=0, fqdn_tr_bit=4, …
209 ie2 = ie.IE_list[0]
215 ie = gtp.IE_list[9]
216 ie.PDN_type == 1 and ie.ipv4 == '127.0.0.3'
219 ie = IE_PAA(ietype='PAA', length=5, PDN_type='IPv4', ipv4='127.0.0.3')
220 ie.ietype == 79 and ie.PDN_type == 1 and ie.ipv4 == '127.0.0.3'
225 ie = gtp.IE_list[12].IE_list[2]
226 ie.MaxBitRateForUplink == 0 and ie.MaxBitRateForDownlink == 0 and ie.QCI == 7
229 ie = IE_Bearer_QoS(ietype='Bearer QoS', length=22, PCI=4, PriorityLevel=5, PVI=6, QCI=7,
231 ie.ietype == 80 and ie.PCI == 4 and ie.PriorityLevel == 5 and ie.PVI == 6 and ie.QCI == 7 and ie.Ma…
236 ie = gtp.IE_list[4]
237 ie.RAT_type == 6
240 ie = IE_RAT(ietype='RAT', length=1, RAT_type='EUTRAN')
241 ie.ietype == 82 and ie.RAT_type == 6
246 ie = gtp.IE_list[3]
247 ie.MCC == b'234' and ie.MNC == b'02'
250 ie = IE_ServingNetwork(
252 ie.ietype == 83 and ie.MCC == b'234' and ie.MNC == b'02'
257 ie = gtp.IE_list[2]
258 ie.TAI_Present == 1 and ie.ECGI_Present == 1 and ie.TAI.MCC == b'234' and ie.TAI.MNC == b'02' and i…
261 ie = IE_ULI(ietype='ULI', length=13, LAI_Present=0, ECGI_Present=1, TAI_Present=1, RAI_Present=0, S…
263 ie.ietype == 86 and ie.LAI_Present == 0 and ie.ECGI_Present == 1 and ie.TAI_Present == 1 and ie.RAI…
268 ie = gtp.IE_list[0]
269 ie.CSG_ID == 22 and ie.AccessMode == 0 and ie.LCSG == 1 and ie.CMI == 0 and ie.MCC == b'123' and ie…
272 ie = IE_UCI(ietype='UCI', length=8, CR_flag=0, instance=0, MCC=b'123', MNC=b'45', SPARE1=0, SPARE2=…
273 ie.ietype == 145 and ie.CSG_ID == 22 and ie.AccessMode == 0 and ie.LCSG == 1 and ie.CMI == 0 and ie…
278 ie = gtp.IE_list[0].IE_list[0]
279 ie.ASI == 1 and ie.Vind == 0 and ie.VB == 1 and ie.PPC == 0
282 ie = IE_BearerFlags(ietype='Bearer Flags', length=1, CR_flag=0, instance=0, SPARE=0, ASI=1, Vind=0,…
283 ie.ietype == 97 and ie.ASI == 1 and ie.Vind == 0 and ie.VB == 1 and ie.PPC == 0
288 ie = gtp.IE_list[0]
289 ie.DCNR == 0
292 ie = IE_UPF_SelInd_Flags(ietype='UP Function Selection Indication Flags', length=1, CR_flag=0, inst…
293 ie.ietype == 202 and ie.DCNR == 0
298 ie = gtp.IE_list[0]
299 ie.protocol_type == 3 and ie.cause_type == 0 and ie.cause_value == 17
302 ie = IE_Ran_Nas_Cause(ietype='RAN/NAS Cause', length=2, CR_flag=0, instance=0, protocol_type=3, cau…
303 ie.ietype == 172 and ie.protocol_type == 3 and ie.cause_type == 0 and ie.cause_value == 17
308 ie = gtp.IE_list[0]
309 ie.ietype == 132 and ie.nodeid_type == 0 and ie.num_csid == 1 and ie.nodeid_v4 == '10.1.1.11' and i…
312 ie = IE_FQCSID(ietype=132, length=19, CR_flag=0, instance=0, nodeid_type=1, num_csid=1, nodeid_v4=N…
313 ie.ietype == 132 and ie.nodeid_type == 1 and ie.num_csid == 1 and ie.nodeid_v6 == 42540578207381523…
318 ie = gtp.IE_list[5]
319 ie.GRE_Key == 4242 and ie.ipv4 == '127.0.0.2'
322 ie = IE_FTEID(ietype='F-TEID', length=9, ipv4_present=1,
324 ie.ietype == 87 and ie.ipv4_present == 1 and ie.InterfaceType == 10 and ie.GRE_Key == 0x1092 and ie…
329 ie = gtp.IE_list[12]
330 len(ie.IE_list) == 3 and ie.IE_list[0].ietype == 73 and ie.IE_list[0].EBI == 229 and ie.IE_list[
331 …1].ietype == 87 and ie.IE_list[1].ipv4 == '127.0.0.2' and ie.IE_list[2].ietype == 80 and ie.IE_lis…
334 ie = IE_BearerContext(ietype='Bearer Context', length=44, IE_list=[
336 ie.ietype == 93 and len(ie.IE_list) == 1 and ie.IE_list[
337 0].ietype == 73 and ie.IE_list[0].EBI == 229
342 ie = gtp.IE_list[5].IE_list[2]
343 ie.ChargingID == 956321605
346 ie = IE_ChargingID(ietype='Charging ID', length=4, ChargingID=956321605)
347 ie.ietype == 94 and ie.ChargingID == 956321605
352 ie = gtp.IE_list[18]
353 ie.ChargingCharacteristic == 0xa00
356 ie = IE_ChargingCharacteristics(
358 ie.ietype == 95 and ie.ChargingCharacteristic == 0xa00
363 ie = gtp.IE_list[8]
364 ie.PDN_type == 1
367 ie = IE_PDN_type(ietype='PDN Type', length=1, PDN_type='IPv4')
368 ie.ietype == 99 and ie.PDN_type == 1
373 ie = gtp.IE_list[13]
374 ie.Timezone == 20 and ie.DST == 0
377 ie = IE_UE_Timezone(ietype='UE Time zone', length=2, Timezone=20, DST=0)
378 ie.ietype == 114 and ie.Timezone == 20 and ie.DST == 0
381 ie = IE_UE_Timezone(ietype='UE Time zone', length=2, Timezone=20, DST=1)
382 ie.ietype == 114 and ie.Timezone == 20 and ie.DST == 1
387 ie = gtp.IE_list[2]
388 ie.PortNumber == 17714
391 ie = IE_Port_Number(
393 ie.ietype == 126 and ie.PortNumber == 17714
398 ie = gtp.IE_list[4]
399 ie.APN_Restriction == 0
402 ie = IE_APN_Restriction(
404 ie.ietype == 127 and ie.APN_Restriction == 0
409 ie = gtp.IE_list[9]
410 ie.SelectionMode == 0
413 ie = IE_SelectionMode(
415 ie.ietype == 128 and ie.SelectionMode == 4
420 ie = gtp.IE_list[18]
421 ie.uplink_rate == 5696 and ie.downlink_rate == 21000
424 ie = IE_MMBR(ietype='Max MBR/APN-AMBR (MMBR)',
426 ie.ietype == 161 and ie.uplink_rate == 5696 and ie.downlink_rate == 21000