]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1147] Removed left check
authorFrancis Dupont <fdupont@isc.org>
Fri, 22 May 2020 14:27:35 +0000 (16:27 +0200)
committerFrancis Dupont <fdupont@isc.org>
Tue, 26 May 2020 09:53:11 +0000 (11:53 +0200)
src/bin/dhcp6/dhcp6_srv.cc

index 483e7f6fed9b473def843416d250be85b9ba65c8..065b33e192e3b0390b0603972ed6d5fe86014c32 100644 (file)
@@ -858,11 +858,6 @@ Dhcpv6Srv::processDhcp6Query(Pkt6Ptr& query, Pkt6Ptr& rsp) {
         }
     }
 
-    // Stop here if ClientHandler tryLock decided the packet is a duplicate.
-    if (drop) {
-        return;
-    }
-
     // Let's create a simplified client context here.
     AllocEngine::ClientContext6 ctx;
     bool drop = false;