]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2414] Compilation fix for Solaris 11
authorTomek Mrugalski <tomasz@isc.org>
Wed, 7 Nov 2012 22:05:50 +0000 (17:05 -0500)
committerTomek Mrugalski <tomasz@isc.org>
Wed, 7 Nov 2012 22:05:50 +0000 (17:05 -0500)
src/bin/dhcp6/dhcp6_srv.cc

index 0652eb9a9eecc220d1a0d5e849ec0b8449de5f44..a2e0404b4672e937a664fd690e803bfbb0d67d43 100644 (file)
@@ -49,6 +49,9 @@ using namespace isc::util;
 using namespace std;
 using namespace boost;
 
+namespace isc {
+namespace dhcp {
+
 Dhcpv6Srv::Dhcpv6Srv(uint16_t port) {
 
     LOG_DEBUG(dhcp6_logger, DBG_DHCP6_START, DHCP6_OPEN_SOCKET).arg(port);
@@ -628,3 +631,6 @@ void
 Dhcpv6Srv::initStdOptionDefs() {
     LibDHCP::initStdOptionDefs(Option::V6);
 }
+
+};
+};