Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scapy
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
external
scapy
Commits
371ab497
Commit
371ab497
authored
10 years ago
by
Guillaume Valadon
Browse files
Options
Downloads
Patches
Plain Diff
User Location Information IE
--HG-- branch : GTP support
parent
95805925
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scapy/contrib/gtp.py
+15
-3
15 additions, 3 deletions
scapy/contrib/gtp.py
with
15 additions
and
3 deletions
scapy/contrib/gtp.py
+
15
−
3
View file @
371ab497
...
@@ -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.
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment