]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3360] Fix Memfile config string for Dhcp4 srv unit tests.
authorMarcin Siodelski <marcin@isc.org>
Wed, 26 Mar 2014 08:19:44 +0000 (09:19 +0100)
committerMarcin Siodelski <marcin@isc.org>
Wed, 26 Mar 2014 08:19:44 +0000 (09:19 +0100)
src/bin/dhcp4/tests/dhcp4_test_utils.h
src/bin/dhcp6/tests/dhcp6_test_utils.h

index 48befdfeabcf798bde0df0e8568afc8e71b1eccd..b978979c0256ddaceb296b7af54c8626421eddb1 100644 (file)
@@ -117,7 +117,8 @@ public:
     /// @param port port number to listen on; the default value 0 indicates
     /// that sockets should not be opened.
     NakedDhcpv4Srv(uint16_t port = 0)
-        : Dhcpv4Srv(port, "type=memfile", false, false) {
+        : Dhcpv4Srv(port, "type=memfile universe=4 persist=false",
+                    false, false) {
         // Create fixed server id.
         server_id_.reset(new Option4AddrLst(DHO_DHCP_SERVER_IDENTIFIER,
                                             asiolink::IOAddress("192.0.3.1")));
index 9f6e0180c02919dd61708efaba9010336a3a6462..707ee7004205f5dce12322c3a99dd112e476cd98 100644 (file)
@@ -45,7 +45,7 @@ class NakedDhcpv6Srv: public isc::dhcp::Dhcpv6Srv {
 public:
     NakedDhcpv6Srv(uint16_t port) : isc::dhcp::Dhcpv6Srv(port) {
         // Open the "memfile" database for leases
-        std::string memfile = "type=memfile universe=6";
+        std::string memfile = "type=memfile universe=6 persist=false";
         isc::dhcp::LeaseMgrFactory::create(memfile);
     }