From c09ff0b696bb5310bf01a73018dd3c9cda6cd01b Mon Sep 17 00:00:00 2001 From: Dustin Lundquist Date: Thu, 28 Apr 2016 14:55:31 -0500 Subject: [PATCH] Remove ICMPV6_ALLOWED_TYPES We can do this now quickly because it is not used outside of the neutron core tree yet: http://codesearch.openstack.org/?q=ICMPV6_ALLOWED_TYPES Why? Because ICMPV6_ALLOWED_TYPES is not a "constant" -- it is more like a policy. It turns we need to change the list of allowed ICMPv6 types. This is being taken care of by https://review.openstack.org/310954 Change-Id: I81f5546251efe6cef1f79a7889cd9b15369d7f79 --- neutron_lib/constants.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/neutron_lib/constants.py b/neutron_lib/constants.py index c7a164f55..bb0b49a00 100644 --- a/neutron_lib/constants.py +++ b/neutron_lib/constants.py @@ -216,12 +216,6 @@ ICMPV6_TYPE_NA = 136 # Multicast Listener v2 Report (143) ICMPV6_TYPE_MLD2_REPORT = 143 -# List of ICMPv6 types that should be allowed by default: -ICMPV6_ALLOWED_TYPES = [ICMPV6_TYPE_MLD_QUERY, - ICMPV6_TYPE_MLD_REPORT, - ICMPV6_TYPE_MLD_DONE, - ICMPV6_TYPE_NS, - ICMPV6_TYPE_NA] # List of ICMPv6 types that should be allowed from the unspecified address for # Duplicate Address Detection: ICMPV6_ALLOWED_UNSPEC_ADDR_TYPES = [ICMPV6_TYPE_MLD_REPORT,