diff options
author | Andrei Pavel <andrei@isc.org> | 2022-07-25 17:51:51 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2022-07-25 17:51:51 +0200 |
commit | 9c2b1591eab33b726054b8d75565dbd470156544 (patch) | |
tree | e8a9c977f740df705497d5d2f7148179195b90d9 /src/bin | |
parent | [#2474] regenerate parsers (diff) | |
download | kea-9c2b1591eab33b726054b8d75565dbd470156544.tar.xz kea-9c2b1591eab33b726054b8d75565dbd470156544.zip |
[#2505] release changes
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/dhcp4/dhcp4_srv.cc | 4 | ||||
-rw-r--r-- | src/bin/dhcp4/tests/callout_library_3.cc | 2 | ||||
-rw-r--r-- | src/bin/dhcp4/tests/dhcp4_test_utils.h | 2 | ||||
-rw-r--r-- | src/bin/dhcp4/tests/hooks_unittest.cc | 2 | ||||
-rw-r--r-- | src/bin/dhcp4/tests/host_unittest.cc | 2 | ||||
-rw-r--r-- | src/bin/dhcp6/dhcp6_srv.cc | 4 | ||||
-rw-r--r-- | src/bin/dhcp6/tests/callout_library_3.cc | 2 | ||||
-rw-r--r-- | src/bin/dhcp6/tests/dhcp6_test_utils.cc | 2 | ||||
-rw-r--r-- | src/bin/dhcp6/tests/dhcp6_test_utils.h | 2 | ||||
-rw-r--r-- | src/bin/netconf/control_socket.cc | 2 | ||||
-rw-r--r-- | src/bin/netconf/control_socket.h | 2 | ||||
-rw-r--r-- | src/bin/netconf/netconf.cc | 2 | ||||
-rw-r--r-- | src/bin/perfdhcp/test_control.h | 2 |
13 files changed, 15 insertions, 15 deletions
diff --git a/src/bin/dhcp4/dhcp4_srv.cc b/src/bin/dhcp4/dhcp4_srv.cc index 406c0ff4a4..263cb8726c 100644 --- a/src/bin/dhcp4/dhcp4_srv.cc +++ b/src/bin/dhcp4/dhcp4_srv.cc @@ -1430,7 +1430,7 @@ Dhcpv4Srv::processDhcp4Query(Pkt4Ptr& query, Pkt4Ptr& rsp, // In MT there are 2 cases: // 1. packet is unparked before current thread smart pointer to // ScopedCalloutHandleState is destroyed: - // - the lamba uses the smart pointer to set the callout which adds the + // - the lambda uses the smart pointer to set the callout which adds the // task, but the task is added after ScopedCalloutHandleState is // destroyed, on the destruction of the last reference which is held // by the current thread. @@ -1438,7 +1438,7 @@ Dhcpv4Srv::processDhcp4Query(Pkt4Ptr& query, Pkt4Ptr& rsp, // ScopedCalloutHandleState is destroyed: // - the current thread reference to ScopedCalloutHandleState is // destroyed, but the reference in the lambda keeps it alive until - // the lamba is called and the last reference is released, at which + // the lambda is called and the last reference is released, at which // time the task is actually added. // Use the RAII wrapper to make sure that the callout handle state is // reset when this object goes out of scope. All hook points must do diff --git a/src/bin/dhcp4/tests/callout_library_3.cc b/src/bin/dhcp4/tests/callout_library_3.cc index 31365b37db..494b25801d 100644 --- a/src/bin/dhcp4/tests/callout_library_3.cc +++ b/src/bin/dhcp4/tests/callout_library_3.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2020 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/dhcp4/tests/dhcp4_test_utils.h b/src/bin/dhcp4/tests/dhcp4_test_utils.h index fc20cb066e..17a3d5a75d 100644 --- a/src/bin/dhcp4/tests/dhcp4_test_utils.h +++ b/src/bin/dhcp4/tests/dhcp4_test_utils.h @@ -650,7 +650,7 @@ public: /// @brief Checks if server port can be overridden in packets being sent. void portsServerPort(); - /// @breif Check if example files contain valid configuration. + /// @brief Check if example files contain valid configuration. void checkConfigFiles(); /// @brief Check if the server configuration stored in file is valid. diff --git a/src/bin/dhcp4/tests/hooks_unittest.cc b/src/bin/dhcp4/tests/hooks_unittest.cc index bfbf692750..049a065dca 100644 --- a/src/bin/dhcp4/tests/hooks_unittest.cc +++ b/src/bin/dhcp4/tests/hooks_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2015-2021 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2015-2022 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 diff --git a/src/bin/dhcp4/tests/host_unittest.cc b/src/bin/dhcp4/tests/host_unittest.cc index 503198c0e2..b6774d05f3 100644 --- a/src/bin/dhcp4/tests/host_unittest.cc +++ b/src/bin/dhcp4/tests/host_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2020 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/dhcp6/dhcp6_srv.cc b/src/bin/dhcp6/dhcp6_srv.cc index 5b4debb1e3..1ad99099ea 100644 --- a/src/bin/dhcp6/dhcp6_srv.cc +++ b/src/bin/dhcp6/dhcp6_srv.cc @@ -1063,7 +1063,7 @@ Dhcpv6Srv::processDhcp6Query(Pkt6Ptr& query, Pkt6Ptr& rsp) { // In MT there are 2 cases: // 1. packet is unparked before current thread smart pointer to // ScopedCalloutHandleState is destroyed: - // - the lamba uses the smart pointer to set the callout which adds the + // - the lambda uses the smart pointer to set the callout which adds the // task, but the task is added after ScopedCalloutHandleState is // destroyed, on the destruction of the last reference which is held // by the current thread. @@ -1071,7 +1071,7 @@ Dhcpv6Srv::processDhcp6Query(Pkt6Ptr& query, Pkt6Ptr& rsp) { // ScopedCalloutHandleState is destroyed: // - the current thread reference to ScopedCalloutHandleState is // destroyed, but the reference in the lambda keeps it alive until - // the lamba is called and the last reference is released, at which + // the lambda is called and the last reference is released, at which // time the task is actually added. // Use the RAII wrapper to make sure that the callout handle state is // reset when this object goes out of scope. All hook points must do diff --git a/src/bin/dhcp6/tests/callout_library_3.cc b/src/bin/dhcp6/tests/callout_library_3.cc index daae1c8d19..5e5d9cb2e1 100644 --- a/src/bin/dhcp6/tests/callout_library_3.cc +++ b/src/bin/dhcp6/tests/callout_library_3.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2020 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/dhcp6/tests/dhcp6_test_utils.cc b/src/bin/dhcp6/tests/dhcp6_test_utils.cc index ce8dcf02ea..4d0e79dcb8 100644 --- a/src/bin/dhcp6/tests/dhcp6_test_utils.cc +++ b/src/bin/dhcp6/tests/dhcp6_test_utils.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2013-2021 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2013-2022 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 diff --git a/src/bin/dhcp6/tests/dhcp6_test_utils.h b/src/bin/dhcp6/tests/dhcp6_test_utils.h index 65481fef54..856f1a40f6 100644 --- a/src/bin/dhcp6/tests/dhcp6_test_utils.h +++ b/src/bin/dhcp6/tests/dhcp6_test_utils.h @@ -840,7 +840,7 @@ public: multi_threading_ = enabled; } - /// @breif Check if example files contain valid configuration. + /// @brief Check if example files contain valid configuration. void checkConfigFiles(); /// @brief Check if the server configuration stored in file is valid. diff --git a/src/bin/netconf/control_socket.cc b/src/bin/netconf/control_socket.cc index 6e3c75a18b..56a90ac4b1 100644 --- a/src/bin/netconf/control_socket.cc +++ b/src/bin/netconf/control_socket.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/netconf/control_socket.h b/src/bin/netconf/control_socket.h index 080be9f3c8..a3741a6ca9 100644 --- a/src/bin/netconf/control_socket.h +++ b/src/bin/netconf/control_socket.h @@ -1,4 +1,4 @@ -// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/netconf/netconf.cc b/src/bin/netconf/netconf.cc index d179a875d6..42b6d3e417 100644 --- a/src/bin/netconf/netconf.cc +++ b/src/bin/netconf/netconf.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2021 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2022 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 diff --git a/src/bin/perfdhcp/test_control.h b/src/bin/perfdhcp/test_control.h index caa3f298ff..17700cebf2 100644 --- a/src/bin/perfdhcp/test_control.h +++ b/src/bin/perfdhcp/test_control.h @@ -1,4 +1,4 @@ -// Copyright (C) 2012-2021 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2012-2022 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 |