From f9727001edc936020f47735a7653bbe1d2533026 Mon Sep 17 00:00:00 2001
From: Guillaume Valadon <guillaume@valadon.net>
Date: Thu, 24 Jul 2014 13:54:58 +0200
Subject: [PATCH] IPv6 next header field was overloaded twice in ICMPv6MLDone()

--HG--
branch : Issue #5100 - errata
---
 scapy/layers/inet6.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scapy/layers/inet6.py b/scapy/layers/inet6.py
index 9340cd39..5346a1f3 100644
--- a/scapy/layers/inet6.py
+++ b/scapy/layers/inet6.py
@@ -1337,7 +1337,7 @@ class ICMPv6MLReport(_ICMPv6ML): # RFC 2710
 class ICMPv6MLDone(_ICMPv6ML): # RFC 2710
     name = "MLD - Multicast Listener Done"
     type = 132
-    overload_fields = {IPv6: { "dst": "ff02::2", "hlim": 1}}
+    overload_fields = {IPv6: { "dst": "ff02::2", "hlim": 1, "nh": 58}}
 
 
 ########## ICMPv6 MRD - Multicast Router Discovery (RFC 4286) ###############
-- 
GitLab