Browse Source

[4267] Finished merge of (rebased) trac4108 (Reorganize DHCP server code flow)

Francis Dupont 9 years ago
parent
commit
15293d0658
2 changed files with 4 additions and 4 deletions
  1. 2 2
      src/bin/dhcp4/dhcp4_srv.cc
  2. 2 2
      src/bin/dhcp4/dhcp4_srv.h

+ 2 - 2
src/bin/dhcp4/dhcp4_srv.cc

@@ -1,4 +1,4 @@
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2016 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
@@ -509,7 +509,7 @@ Dhcpv4Srv::processPacket(Pkt4Ptr& query) {
 
     // Log reception of the packet. We need to increase it early, as any
     // failures in unpacking will cause the packet to be dropped. We
-    // will increase type specific packets further down the road.
+    // will increase type specific statistoc further down the road.
     // See processStatsReceived().
     isc::stats::StatsMgr::instance().addValue("pkt4-received",
                                               static_cast<int64_t>(1));

+ 2 - 2
src/bin/dhcp4/dhcp4_srv.h

@@ -1,4 +1,4 @@
-// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-2016 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
@@ -209,7 +209,7 @@ public:
     /// @brief Main server processing loop.
     ///
     /// Main server processing loop. Receives incoming packets, and calls
-    /// processPakcet for each of them.
+    /// processPacket for each of them.
     ///
     /// @return true, if being shut down gracefully, fail if experienced
     ///         critical error.