if (ctx.subnet_ && ctx.subnet_->getRapidCommit()) {
OptionPtr opt_rapid_commit = solicit->getOption(D6O_RAPID_COMMIT);
if (opt_rapid_commit) {
- LOG_DEBUG(options_logger, DBG_DHCP6_DETAIL, DHCP6_RAPID_COMMIT)
- .arg(solicit->getLabel());
+
+ /// @todo uncomment when #3807 is merged!
+/* LOG_DEBUG(options_logger, DBG_DHCP6_DETAIL, DHCP6_RAPID_COMMIT)
+ .arg(solicit->getLabel()); */
+
// If Rapid Commit has been sent by the client, change the
// response type to Reply and include Rapid Commit option.
response->setType(DHCPV6_REPLY);
SubnetConfigParser::SubnetConfigParser(const std::string&,
ParserContextPtr global_context,
const isc::asiolink::IOAddress& default_addr)
- : boolean_values_(new BooleanStorage()), uint32_values_(new Uint32Storage()),
- string_values_(new StringStorage()), pools_(new PoolStorage()),
+ : uint32_values_(new Uint32Storage()),
+ string_values_(new StringStorage()),
+ boolean_values_(new BooleanStorage()),
+ pools_(new PoolStorage()),
global_context_(global_context),
relay_info_(new isc::dhcp::Subnet::RelayInfo(default_addr)),
options_(new CfgOption()) {
protected:
- /// Storage for subnet-specific boolean values.
- BooleanStoragePtr boolean_values_;
-
/// Storage for subnet-specific integer values.
Uint32StoragePtr uint32_values_;