2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-11 13:56:46 +00:00

[5305] Introduced shared networks holding subnets.

This commit is contained in:
Marcin Siodelski
2017-08-31 10:16:11 +02:00
parent 53bfb9543f
commit 090f6c00f2
15 changed files with 971 additions and 22 deletions

View File

@@ -0,0 +1,30 @@
// Copyright (C) 2017 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 SHARED_NETWORK_PARSER_H
#define SHARED_NETWORK_PARSER_H
#include <cc/data.h>
#include <dhcpsrv/parsers/shared_network_parser.h>
#include <dhcpsrv/shared_network.h>
using namespace isc::data;
namespace isc {
namespace dhcp {
SharedNetworkParser::~SharedNetworkParser() {
}
SharedNetworkPtr
SharedNetworkParser::parse(const ConstElementPtr& shared_network_data) {
return (SharedNetworkPtr());
}
} // end of namespace isc::dhcp
} // end of namespace isc
#endif // SHARED_NETWORK_PARSER_H