Kea 1.5.0
ifaces_config_parser.h
Go to the documentation of this file.
1// Copyright (C) 2015-2017 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef IFACES_CONFIG_PARSER_H
8#define IFACES_CONFIG_PARSER_H
9
10#include <cc/data.h>
11#include <cc/simple_parser.h>
12#include <dhcpsrv/cfg_iface.h>
14
15namespace isc {
16namespace dhcp {
17
27public:
28
32 explicit IfacesConfigParser(const uint16_t protocol);
33
41 void parse(const CfgIfacePtr& config, const isc::data::ConstElementPtr& values);
42
43private:
53 void parseInterfacesList(const CfgIfacePtr& cfg_iface,
54 isc::data::ConstElementPtr ifaces_list);
55
57 int protocol_;
58};
59
60}
61} // end of namespace isc
62
63#endif // IFACES_CONFIG_PARSER_H
Parser for the configuration of interfaces.
void parse(const CfgIfacePtr &config, const isc::data::ConstElementPtr &values)
Parses content of the "interfaces-config".
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:23
boost::shared_ptr< CfgIface > CfgIfacePtr
A pointer to the CfgIface .
Definition: cfg_iface.h:387
Defines the logger used by the top-level component of kea-dhcp-ddns.