From: Francis Dupont Date: Wed, 24 Feb 2016 12:37:05 +0000 (+0100) Subject: [4267] Finished merge of (rebased) trac4108 (Reorganize DHCP server code flow) X-Git-Tag: trac4267_base~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15293d065892d4065797592066ca57d542b39c1a;p=thirdparty%2Fkea.git [4267] Finished merge of (rebased) trac4108 (Reorganize DHCP server code flow) --- diff --git a/src/bin/dhcp4/dhcp4_srv.cc b/src/bin/dhcp4/dhcp4_srv.cc index b96e62a18e..a65b7c464a 100644 --- a/src/bin/dhcp4/dhcp4_srv.cc +++ b/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(1)); diff --git a/src/bin/dhcp4/dhcp4_srv.h b/src/bin/dhcp4/dhcp4_srv.h index 429ff7c133..bed9764df1 100644 --- a/src/bin/dhcp4/dhcp4_srv.h +++ b/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.