diff options
Diffstat (limited to 'src/lib/dhcpsrv/parsers/simple_parser6.h')
-rw-r--r-- | src/lib/dhcpsrv/parsers/simple_parser6.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/lib/dhcpsrv/parsers/simple_parser6.h b/src/lib/dhcpsrv/parsers/simple_parser6.h new file mode 100644 index 0000000..8eae3bf --- /dev/null +++ b/src/lib/dhcpsrv/parsers/simple_parser6.h @@ -0,0 +1,70 @@ +// Copyright (C) 2016-2020 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef SIMPLE_PARSER6_H +#define SIMPLE_PARSER6_H + +#include <cc/simple_parser.h> + +namespace isc { +namespace dhcp { + +/// @brief SimpleParser specialized for DHCPv6 +/// +/// This class is a @ref isc::data::SimpleParser dedicated to DHCPv6 parser. +/// In particular, it contains all the default values and names of the +/// parameters that are to be derived (inherited) between scopes. +/// For the actual values, see @file simple_parser6.cc +class SimpleParser6 : public isc::data::SimpleParser { +public: + + /// @brief Sets all defaults for DHCPv6 configuration + /// + /// This method sets global, option data and option definitions defaults. + /// + /// @param global scope to be filled in with defaults. + /// @return number of default values added + static size_t setAllDefaults(isc::data::ElementPtr global); + + /// @brief Derives (inherits) all parameters from global to more specific scopes. + /// + /// This method currently does the following: + /// - derives global parameters to subnets (lifetimes for now) + /// @param global scope to be modified if needed (subnet6 will be extracted) + /// @return number of default values derived + static size_t deriveParameters(isc::data::ElementPtr global); + + // see simple_parser6.cc for comments for those parameters + static const isc::data::SimpleKeywords GLOBAL6_PARAMETERS; + static const isc::data::SimpleDefaults GLOBAL6_DEFAULTS; + + static const isc::data::SimpleKeywords OPTION6_DEF_PARAMETERS; + static const isc::data::SimpleDefaults OPTION6_DEF_DEFAULTS; + + static const isc::data::SimpleKeywords OPTION6_PARAMETERS; + static const isc::data::SimpleDefaults OPTION6_DEFAULTS; + + static const isc::data::SimpleKeywords SUBNET6_PARAMETERS; + static const isc::data::SimpleDefaults SUBNET6_DEFAULTS; + static const isc::data::SimpleDefaults SHARED_SUBNET6_DEFAULTS; + static const isc::data::ParamsList INHERIT_TO_SUBNET6; + + static const isc::data::SimpleKeywords POOL6_PARAMETERS; + static const isc::data::SimpleKeywords PD_POOL6_PARAMETERS; + + static const isc::data::SimpleKeywords SHARED_NETWORK6_PARAMETERS; + static const isc::data::SimpleDefaults SHARED_NETWORK6_DEFAULTS; + + static const isc::data::SimpleDefaults IFACE6_DEFAULTS; + static const isc::data::SimpleDefaults DHCP_QUEUE_CONTROL6_DEFAULTS; + static const isc::data::SimpleDefaults DHCP_MULTI_THREADING6_DEFAULTS; + static const isc::data::SimpleDefaults SANITY_CHECKS6_DEFAULTS; +}; + +} // namespace dhcp +} // namespace isc + +#endif |