summaryrefslogtreecommitdiffstats
path: root/src/lib/util/dhcp_space.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/dhcp_space.cc')
-rw-r--r--src/lib/util/dhcp_space.cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/util/dhcp_space.cc b/src/lib/util/dhcp_space.cc
new file mode 100644
index 0000000..46bb3b1
--- /dev/null
+++ b/src/lib/util/dhcp_space.cc
@@ -0,0 +1,25 @@
+// Copyright (C) 2022 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 <util/dhcp_space.h>
+
+namespace isc {
+namespace util {
+
+template <>
+char const* cStringDhcpSpace<DHCPv4>() {
+ return "4";
+}
+
+template <>
+char const* cStringDhcpSpace<DHCPv6>() {
+ return "6";
+}
+
+} // namespace util
+} // namespace isc