Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
OnosSystemTest
/
186b7368c73bdccfc1458456fcf381a509ec3a51
/
.
/
TestON
/
tests
/
FUNCflow
/
Dependency
/
mplsClass.py
blob: 30b27e8542fdf10da27c4fe01c36fc753fc4bbb5 [
file
] [
log
] [
blame
]
import
scapy
class
MPLS
(
Packet
):
name
=
"MPLS"
fields_desc
=
[
BitField
(
"label"
,
3
,
20
),
BitField
(
"experimental_bits"
,
0
,
3
),
BitField
(
"bottom_of_label_stack"
,
1
,
1
),
# Now we're at the bottom
ByteField
(
"TTL"
,
255
)
]