``true`` and it defaults to ``false`` if not configured.
(Gitlab #2249)
-1999. [func] tmark, razvan
+1999. [func] tmark, razvan
The kea-dhcp6 server fully supports using PostgreSQL for config
back end. This should be considered an experimental feature.
(Gitlab #2355)
// Boolean parameter which controls whether an early global host
// reservations lookup should be performed. This lookup takes place
// before subnet selection and when a global reservation is found
- // with some client classes triggers a second phase classification.
- // It can be used too to drop queries using host reservations as
- // a decision table indexed by reservation identifiers.
+ // with some client classes, it triggers a second phase classification.
+ // It can also be used to drop queries using host reservations as a
+ // decision table indexed by reservation identifiers.
"early-global-reservations-lookup": true,
// Boolean parameter which controls DHCP server's behavior with respect
// Boolean parameter which controls whether an early global host
// reservations lookup should be performed. This lookup takes place
// before subnet selection and when a global reservation is found
- // with some client classes triggers a second phase classification.
- // It can be used too to drop queries using host reservations as
- // a decision table indexed by reservation identifiers.
+ // with some client classes, it triggers a second phase classification.
+ // It can also be used to drop queries using host reservations as a
+ // decision table indexed by reservation identifiers.
"early-global-reservations-lookup": true,
// Boolean parameter which controls DHCP server's behavior with respect
// Send the discover.
client2.doDiscover();
- // Not matchine so not dropped.
+ // Not matching so not dropped.
EXPECT_TRUE(client2.getContext().response_);
}
// Followed by the subnet
const ClientClasses& to_add = subnet->getRequiredClasses();
for (ClientClasses::const_iterator cclass = to_add.cbegin();
- cclass != to_add.cend(); ++cclass) {
+ cclass != to_add.cend(); ++cclass) {
classes.insert(*cclass);
}
/// update existing lease.
bool fake_allocation_;
- /// @brief Indicates if early global reservation is looked for.
+ /// @brief Indicates if early global reservation is enabled.
///
/// This caches the early-global-reservations-lookup value.
bool early_global_reservations_lookup_;
/// information to the allocation engine methods is that adding
/// new information doesn't modify the API of the allocation engine.
struct ClientContext4 : public boost::noncopyable {
- /// @brief Indicates if early global reservation is looked for.
+ /// @brief Indicates if early global reservation is enabled.
///
/// This caches the early-global-reservations-lookup value.
bool early_global_reservations_lookup_;