quic: disable quic plugin by default
Change-Id: I8eb243e80ff043a23cb3efae186164dad6c11ca8 Type: fix Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
This commit is contained in:
committed by
Florin Coras
parent
efa119db39
commit
baf1c7ccc1
@@ -2250,6 +2250,7 @@ VLIB_PLUGIN_REGISTER () =
|
|||||||
{
|
{
|
||||||
.version = VPP_BUILD_VER,
|
.version = VPP_BUILD_VER,
|
||||||
.description = "Quic transport protocol",
|
.description = "Quic transport protocol",
|
||||||
|
.default_disabled = 1,
|
||||||
};
|
};
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,10 @@ class QUICAppWorker(Worker):
|
|||||||
|
|
||||||
class QUICTestCase(VppTestCase):
|
class QUICTestCase(VppTestCase):
|
||||||
""" QUIC Test Case """
|
""" QUIC Test Case """
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
cls.extra_vpp_plugin_config.append("plugin quic_plugin.so { enable }")
|
||||||
|
super(QUICTestCase, cls).setUpClass()
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
super(QUICTestCase, self).setUp()
|
super(QUICTestCase, self).setUp()
|
||||||
|
|||||||
Reference in New Issue
Block a user