X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fpatches%2Fscapy-2.3.3%2Fmpls.py.patch;h=f3293e8eee27cf6daa667490e247e468a2220e01;hb=c54162981cdd41d65ed283df36955007552ddffe;hp=5c819110ddc6b53f5f4e7fda4c23a7bc1649d413;hpb=ad422ed7eaafe993d5b530395cb11a708f2ed922;p=vpp.git diff --git a/test/patches/scapy-2.3.3/mpls.py.patch b/test/patches/scapy-2.3.3/mpls.py.patch index 5c819110ddc..f3293e8eee2 100644 --- a/test/patches/scapy-2.3.3/mpls.py.patch +++ b/test/patches/scapy-2.3.3/mpls.py.patch @@ -1,13 +1,37 @@ diff --git a/scapy/contrib/mpls.py b/scapy/contrib/mpls.py -index 640a0c5..6af1d4a 100644 +index 640a0c5..944723a 100644 --- a/scapy/contrib/mpls.py +++ b/scapy/contrib/mpls.py -@@ -18,6 +18,8 @@ class MPLS(Packet): +@@ -6,6 +6,7 @@ + from scapy.packet import Packet, bind_layers, Padding + from scapy.fields import BitField,ByteField + from scapy.layers.inet import IP ++from scapy.contrib.bier import BIER + from scapy.layers.inet6 import IPv6 + from scapy.layers.l2 import Ether, GRE + +@@ -17,9 +18,12 @@ class MPLS(Packet): def guess_payload_class(self, payload): - if len(payload) >= 1: -+ if not self.s: -+ return MPLS - ip_version = (ord(payload[0]) >> 4) & 0xF - if ip_version == 4: - return IP +- if len(payload) >= 1: +- ip_version = (ord(payload[0]) >> 4) & 0xF +- if ip_version == 4: +- return IP +- elif ip_version == 6: +- return IPv6 +- return Padding ++ if not self.s: ++ return MPLS ++ ip_version = (ord(payload[0]) >> 4) & 0xF ++ if ip_version == 4: ++ return IP ++ elif ip_version == 5: ++ return BIER ++ elif ip_version == 6: ++ return IPv6 ++ return Padding +@@ -27,3 +29,4 @@ class MPLS(Packet): + + bind_layers(Ether, MPLS, type=0x8847) + bind_layers(GRE, MPLS, proto=0x8847) ++bind_layers(MPLS, MPLS, s=0)