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

[5305] Stub entry for shared-networks element in server's config added.

This commit is contained in:
Marcin Siodelski 2017-09-04 19:25:15 +02:00
parent b0cca7982a
commit fbadec7947
2 changed files with 18 additions and 0 deletions

View File

@ -290,6 +290,15 @@ configureDhcp4Server(Dhcpv4Srv&, isc::data::ConstElementPtr config_set,
continue; 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 // Timers are not used in the global scope. Their values are derived
// to specific subnets (see SimpleParser6::deriveParameters). // to specific subnets (see SimpleParser6::deriveParameters).
// decline-probation-period, dhcp4o6-port, echo-client-id are // decline-probation-period, dhcp4o6-port, echo-client-id are

View File

@ -382,6 +382,15 @@ configureDhcp6Server(Dhcpv6Srv&, isc::data::ConstElementPtr config_set,
continue; 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 // Timers are not used in the global scope. Their values are derived
// to specific subnets (see SimpleParser6::deriveParameters). // to specific subnets (see SimpleParser6::deriveParameters).
// decline-probation-period and dhcp4o6-port are handled in the // decline-probation-period and dhcp4o6-port are handled in the