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

[#1007] Addressed comments

This commit is contained in:
Francis Dupont
2020-08-04 13:04:42 +02:00
parent 01e10ceba1
commit be9c2d6b17
2 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ const SimpleKeywords SimpleParser4::OPTION4_DEF_PARAMETERS = {
/// definitions. This array lists default values for those option definitions.
const SimpleDefaults SimpleParser4::OPTION4_DEF_DEFAULTS = {
{ "record-types", Element::string, ""},
{ "space", Element::string, "dhcp4"},
{ "space", Element::string, "dhcp4"}, // DHCP4_OPTION_SPACE
{ "array", Element::boolean, "false"},
{ "encapsulate", Element::string, "" }
};
@@ -174,7 +174,7 @@ const SimpleKeywords SimpleParser4::OPTION4_PARAMETERS = {
/// subnet, class or host reservations scopes. This array lists default values
/// for those option-data declarations.
const SimpleDefaults SimpleParser4::OPTION4_DEFAULTS = {
{ "space", Element::string, "dhcp4"},
{ "space", Element::string, "dhcp4"}, // DHCP4_OPTION_SPACE
{ "csv-format", Element::boolean, "true"},
{ "always-send", Element::boolean, "false"}
};

View File

@@ -142,7 +142,7 @@ const SimpleKeywords SimpleParser6::OPTION6_DEF_PARAMETERS = {
/// definitions. This array lists default values for those option definitions.
const SimpleDefaults SimpleParser6::OPTION6_DEF_DEFAULTS = {
{ "record-types", Element::string, ""},
{ "space", Element::string, "dhcp6"},
{ "space", Element::string, "dhcp6"}, // DHCP6_OPTION_SPACE
{ "array", Element::boolean, "false"},
{ "encapsulate", Element::string, "" }
};
@@ -170,7 +170,7 @@ const SimpleKeywords SimpleParser6::OPTION6_PARAMETERS = {
/// subnet, class or host reservations scopes. This array lists default values
/// for those option-data declarations.
const SimpleDefaults SimpleParser6::OPTION6_DEFAULTS = {
{ "space", Element::string, "dhcp6"},
{ "space", Element::string, "dhcp6"}, // DHCP6_OPTION_SPACE
{ "csv-format", Element::boolean, "true"},
{ "always-send", Element::boolean, "false"}
};