update BIER scapy patch to match the scapy repo PR 05/10805/2
authorNeale Ranns <nranns@cisco.com>
Sun, 25 Feb 2018 18:52:12 +0000 (10:52 -0800)
committerOle Trøan <otroan@employees.org>
Mon, 26 Feb 2018 11:29:22 +0000 (11:29 +0000)
Change-Id: I4953b8444b49d1ad445c98a199ae8fd1635e24a5
Signed-off-by: Neale Ranns <nranns@cisco.com>
test/patches/scapy-2.3.3/bier.patch

index 82a881e..97e8a90 100644 (file)
@@ -3,7 +3,7 @@ new file mode 100644
 index 0000000..e173cdb
 --- /dev/null
 +++ b/scapy/contrib/bier.py
-@@ -0,0 +1,58 @@
+@@ -0,0 +1,56 @@
 +# http://trac.secdev.org/scapy/ticket/31
 +
 +# scapy.contrib.description = BIER
@@ -38,9 +38,6 @@ index 0000000..e173cdb
 +                   BitField("s", 1, 1),
 +                   ByteField("ttl", 0)]
 +
-+    def guess_payload_class(self, payload):
-+        return BIER
-+
 +
 +class BIER(Packet):
 +    name = "BIER"
@@ -62,3 +59,4 @@ index 0000000..e173cdb
 +bind_layers(BIER, IP,   Proto=4)
 +bind_layers(BIER, IPv6, Proto=5)
 +bind_layers(UDP, BIFT, dport=8138)
++bind_layers(BIFT, BIER)