From: Marcin Siodelski Date: Mon, 4 Sep 2017 17:25:15 +0000 (+0200) Subject: [5305] Stub entry for shared-networks element in server's config added. X-Git-Tag: trac5073a_base~11^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbadec7947628010ba3bbbcce7cab08da6733e3e;p=thirdparty%2Fkea.git [5305] Stub entry for shared-networks element in server's config added. --- diff --git a/src/bin/dhcp4/json_config_parser.cc b/src/bin/dhcp4/json_config_parser.cc index 187d26cd0a..f81dbecbd8 100644 --- a/src/bin/dhcp4/json_config_parser.cc +++ b/src/bin/dhcp4/json_config_parser.cc @@ -290,6 +290,15 @@ configureDhcp4Server(Dhcpv4Srv&, isc::data::ConstElementPtr config_set, continue; } + if (config_pair.first == "shared-networks") { + /// @todo We need to create instance of SharedNetworks4ListParser + /// and parse the list of the shared networks into the + /// CfgSharedNetworks4 object. One additional step is then to + /// add subnets from the CfgSharedNetworks4 into CfgSubnets4 + /// as well. + continue; + } + // Timers are not used in the global scope. Their values are derived // to specific subnets (see SimpleParser6::deriveParameters). // decline-probation-period, dhcp4o6-port, echo-client-id are diff --git a/src/bin/dhcp6/json_config_parser.cc b/src/bin/dhcp6/json_config_parser.cc index 212fc8b891..f316027cd9 100644 --- a/src/bin/dhcp6/json_config_parser.cc +++ b/src/bin/dhcp6/json_config_parser.cc @@ -382,6 +382,15 @@ configureDhcp6Server(Dhcpv6Srv&, isc::data::ConstElementPtr config_set, continue; } + if (config_pair.first == "shared-networks") { + /// @todo We need to create instance of SharedNetworks4ListParser + /// and parse the list of the shared networks into the + /// CfgSharedNetworks4 object. One additional step is then to + /// add subnets from the CfgSharedNetworks6 into CfgSubnets6 + /// as well. + continue; + } + // Timers are not used in the global scope. Their values are derived // to specific subnets (see SimpleParser6::deriveParameters). // decline-probation-period and dhcp4o6-port are handled in the