npt66: make plugin default disabled

Plugin is still in experimental state. No reason why it needs
to be default enabled.

Type: fix
Change-Id: Ibf1810215d4c8079a068bfc60aa7dd49306ee4e4
Signed-off-by: Ole Troan <otroan@employees.org>
This commit is contained in:
Ole Troan
2023-09-01 14:18:23 +02:00
parent 4b3598e39a
commit 9587d39993
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -57,6 +57,7 @@ npt66_plugin_api_hookup (vlib_main_t *vm)
VLIB_PLUGIN_REGISTER () = {
.version = VPP_BUILD_VER,
.description = "NPTv6",
.default_disabled = 1,
};
clib_error_t *
+4
View File
@@ -12,6 +12,10 @@ from scapy.packet import Raw
class TestNPT66(VppTestCase):
"""NPTv6 Test Case"""
extra_vpp_plugin_config = [
"plugin npt66_plugin.so {enable}",
]
def setUp(self):
super(TestNPT66, self).setUp()