]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[(no branch, rebasing 1815-add-new-drop-points)] [(no branch, rebasing 1815-add-new...
authorFrancis Dupont <fdupont@isc.org>
Wed, 12 May 2021 09:46:31 +0000 (11:46 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 19 May 2021 15:20:35 +0000 (17:20 +0200)
src/bin/dhcp4/dhcp4_srv.cc

index b8b9f6bcd2800fa7b2417551e3eadfd00122107d..8eee230894a4721dd98e44d10c4f8d35b1907f55 100644 (file)
@@ -2999,7 +2999,7 @@ Dhcpv4Srv::processDiscover(Pkt4Ptr& discover) {
 
     Dhcpv4Exchange ex(alloc_engine_, discover, subnet, drop);
 
-    // Stop here if Dhcpv4Exchange constructir decided to drop the packet
+    // Stop here if Dhcpv4Exchange constructor decided to drop the packet
     if (drop) {
         return (Pkt4Ptr());
     }
@@ -3070,7 +3070,7 @@ Dhcpv4Srv::processRequest(Pkt4Ptr& request, AllocEngine::ClientContext4Ptr& cont
 
     Dhcpv4Exchange ex(alloc_engine_, request, subnet, drop);
 
-    // Stop here if Dhcpv4Exchange constructir decided to drop the packet
+    // Stop here if Dhcpv4Exchange constructor decided to drop the packet
     if (drop) {
         return (Pkt4Ptr());
     }
@@ -3425,7 +3425,7 @@ Dhcpv4Srv::processInform(Pkt4Ptr& inform) {
 
     Dhcpv4Exchange ex(alloc_engine_, inform, subnet, drop);
 
-    // Stop here if Dhcpv4Exchange constructir decided to drop the packet
+    // Stop here if Dhcpv4Exchange constructor decided to drop the packet
     if (drop) {
         return (Pkt4Ptr());
     }