2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[#285] Moved to 64

This commit is contained in:
Francis Dupont
2020-08-03 16:19:21 +02:00
committed by Tomek Mrugalski
parent d461a9ed65
commit 6032d69603
3 changed files with 3 additions and 3 deletions

View File

@@ -101,7 +101,7 @@ where:
- ``capacity`` = n [packets] - this is the maximum number of packets the
queue can hold before packets are discarded. The optimal value for
this is extremely site-dependent. The default value is 500 for both
this is extremely site-dependent. The default value is 64 for both
kea-ring4 and kea-ring6.
The following example enables the default packet queue for kea-dhcp4,

View File

@@ -347,7 +347,7 @@ const SimpleDefaults SimpleParser4::IFACE4_DEFAULTS = {
const SimpleDefaults SimpleParser4::DHCP_QUEUE_CONTROL4_DEFAULTS = {
{ "enable-queue", Element::boolean, "false"},
{ "queue-type", Element::string, "kea-ring4"},
{ "capacity", Element::integer, "500"}
{ "capacity", Element::integer, "64"}
};
/// @brief This table defines default values for multi-threading in DHCPv4.

View File

@@ -359,7 +359,7 @@ const SimpleDefaults SimpleParser6::IFACE6_DEFAULTS = {
const SimpleDefaults SimpleParser6::DHCP_QUEUE_CONTROL6_DEFAULTS = {
{ "enable-queue", Element::boolean, "false"},
{ "queue-type", Element::string, "kea-ring6"},
{ "capacity", Element::integer, "500"}
{ "capacity", Element::integer, "64"}
};
/// @brief This table defines default values for multi-threading in DHCPv6.