diff options
Diffstat (limited to 'src/lib/dhcpsrv/cfg_consistency.cc')
-rw-r--r-- | src/lib/dhcpsrv/cfg_consistency.cc | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/lib/dhcpsrv/cfg_consistency.cc b/src/lib/dhcpsrv/cfg_consistency.cc new file mode 100644 index 0000000..033754d --- /dev/null +++ b/src/lib/dhcpsrv/cfg_consistency.cc @@ -0,0 +1,45 @@ +// Copyright (C) 2018-2020 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/. + +#include <config.h> + +#include <dhcpsrv/cfg_consistency.h> +#include <cc/data.h> + +using namespace isc::data; + +namespace isc { +namespace dhcp { + +isc::data::ElementPtr CfgConsistency::toElement() const { + ElementPtr m(new MapElement()); + ElementPtr l(new StringElement(sanityCheckToText(getLeaseSanityCheck()))); + m->set("lease-checks", l); + + return (m); +} + +std::string CfgConsistency::sanityCheckToText(LeaseSanity check_type) { + switch (check_type) { + case LEASE_CHECK_NONE: + return ("none"); + case LEASE_CHECK_WARN: + return ("warn"); + case LEASE_CHECK_FIX: + return ("fix"); + case LEASE_CHECK_FIX_DEL: + return ("fix-del"); + case LEASE_CHECK_DEL: + return ("del"); + default: + return ("unknown"); + } +} + +}; +}; + + |