Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
OnosSystemTest
/
46fdea1abbfb8b455af340e75d919a858598bae5
/
.
/
TestON
/
tests
/
FUNC
/
FUNCflow
/
dependencies
/
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
)
]