Skip to content
Snippets Groups Projects
Commit 371ab497 authored by Guillaume Valadon's avatar Guillaume Valadon
Browse files

User Location Information IE

--HG--
branch : GTP support
parent 95805925
No related branches found
No related tags found
No related merge requests found
...@@ -167,7 +167,6 @@ class IE_Cause(Packet): ...@@ -167,7 +167,6 @@ class IE_Cause(Packet):
def extract_padding(self, pkt): def extract_padding(self, pkt):
return "",pkt return "",pkt
class IE_IMSI(Packet): class IE_IMSI(Packet):
name = "IMSI - Subscriber identity of the MS" name = "IMSI - Subscriber identity of the MS"
fields_desc = [ ByteEnumField("ietype", 2, IEType), fields_desc = [ ByteEnumField("ietype", 2, IEType),
...@@ -175,7 +174,6 @@ class IE_IMSI(Packet): ...@@ -175,7 +174,6 @@ class IE_IMSI(Packet):
def extract_padding(self, pkt): def extract_padding(self, pkt):
return "",pkt return "",pkt
class IE_Routing(Packet): class IE_Routing(Packet):
name = "Routing Area Identity" name = "Routing Area Identity"
fields_desc = [ ByteEnumField("ietype", 3, IEType), fields_desc = [ ByteEnumField("ietype", 3, IEType),
...@@ -313,6 +311,20 @@ class IE_MSInternationalNumber(Packet): ...@@ -313,6 +311,20 @@ class IE_MSInternationalNumber(Packet):
def extract_padding(self, pkt): def extract_padding(self, pkt):
return "",pkt return "",pkt
class IE_UserLocationInformation(Packet):
name = "User Location Information"
fields_desc = [ ByteEnumField("ietype", 152, IEType),
ShortField("length", None),
ByteField("type", 1),
# Only type 1 is currently supported
TBCDByteField("MCC", "", 2),
# MNC: if the third digit of MCC is 0xf, then the length of MNC is 1 byte
TBCDByteField("MNC", "", 1),
ShortField("LAC", None),
ShortField("SAC", None) ]
def extract_padding(self, pkt):
return "",pkt
class IE_IMEI(Packet): class IE_IMEI(Packet):
name = "IMEI" name = "IMEI"
fields_desc = [ ByteEnumField("ietype", 154, IEType), fields_desc = [ ByteEnumField("ietype", 154, IEType),
...@@ -333,7 +345,7 @@ ietypecls = { 1: IE_Cause, 2: IE_IMSI, 3: IE_Routing, 15: IE_SelectionMode, 16 ...@@ -333,7 +345,7 @@ ietypecls = { 1: IE_Cause, 2: IE_IMSI, 3: IE_Routing, 15: IE_SelectionMode, 16
17: IE_TEICP, 19: IE_Teardown, 20: IE_NSAPI, 26: IE_ChargingCharacteristics, 17: IE_TEICP, 19: IE_Teardown, 20: IE_NSAPI, 26: IE_ChargingCharacteristics,
27: IE_TraceReference, 28: IE_TraceType, 27: IE_TraceReference, 28: IE_TraceType,
128: IE_EndUserAddress, 131: IE_AccessPointName, 133: IE_GSNAddress, 128: IE_EndUserAddress, 131: IE_AccessPointName, 133: IE_GSNAddress,
134: IE_MSInternationalNumber, 154: IE_IMEI } 134: IE_MSInternationalNumber, 152: IE_UserLocationInformation, 154: IE_IMEI }
def IE_Dispatcher(s): def IE_Dispatcher(s):
"""Choose the correct Information Element class.""" """Choose the correct Information Element class."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment