Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISC Open Source Projects
Kea
Commits
0eafeb60
Commit
0eafeb60
authored
Oct 29, 2019
by
Wlodzimierz Wencel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[
#971
] copy right dates, mes files Changelog prepared for release
parent
da5eaa01
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
24 additions
and
23 deletions
+24
-23
ChangeLog
ChangeLog
+2
-0
configure.ac
configure.ac
+1
-1
src/bin/agent/tests/parser_unittests.cc
src/bin/agent/tests/parser_unittests.cc
+1
-1
src/bin/dhcp4/dhcp4_messages.mes
src/bin/dhcp4/dhcp4_messages.mes
+6
-6
src/bin/dhcp6/dhcp6_messages.mes
src/bin/dhcp6/dhcp6_messages.mes
+6
-6
src/bin/netconf/tests/parser_unittests.cc
src/bin/netconf/tests/parser_unittests.cc
+1
-1
src/hooks/dhcp/flex_option/flex_option_messages.mes
src/hooks/dhcp/flex_option/flex_option_messages.mes
+0
-1
src/lib/dhcp/option_int.h
src/lib/dhcp/option_int.h
+1
-1
src/lib/dhcp/option_int_array.h
src/lib/dhcp/option_int_array.h
+1
-1
src/lib/dhcp/tests/pkt6_unittest.cc
src/lib/dhcp/tests/pkt6_unittest.cc
+1
-1
src/lib/dhcpsrv/alloc_engine_messages.mes
src/lib/dhcpsrv/alloc_engine_messages.mes
+1
-1
src/lib/dhcpsrv/d2_client_mgr.cc
src/lib/dhcpsrv/d2_client_mgr.cc
+1
-1
src/lib/dhcpsrv/d2_client_mgr.h
src/lib/dhcpsrv/d2_client_mgr.h
+1
-1
src/lib/dhcpsrv/tests/d2_udp_unittest.cc
src/lib/dhcpsrv/tests/d2_udp_unittest.cc
+1
-1
No files found.
ChangeLog
View file @
0eafeb60
Kea 1.7.1 released on Oct 30, 2019
1681. [func] fdupont
Added new command config-backend-pull which forces the server
to immediately poll the configuration updates from the
...
...
configure.ac
View file @
0eafeb60
...
...
@@ -7,7 +7,7 @@ AC_PREREQ([2.69])
# For GIT versions, this is x.y.z-git, where x.y.z denotes the software
# version that was used as a base + changes that were made later, but
# are not released yet.
AC_INIT(kea,1.7.1
-git
, kea-dev@lists.isc.org)
AC_INIT(kea,1.7.1, kea-dev@lists.isc.org)
AC_CONFIG_SRCDIR(README)
# serial-tests is not available in automake version before 1.13, so
...
...
src/bin/agent/tests/parser_unittests.cc
View file @
0eafeb60
// Copyright (C) 2017-201
8
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2017-201
9
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
...
...
src/bin/dhcp4/dhcp4_messages.mes
View file @
0eafeb60
...
...
@@ -46,6 +46,12 @@ by the process. The signal will be handled before the server starts
waiting for next packets. The argument specifies the next signal to
be handled by the server.
% DHCP4_CB_ON_DEMAND_FETCH_UPDATES_FAIL error on demand attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this on demand attempt failed.
The sole argument which is returned to the config-backend-pull command
caller too contains the reason for failure.
% DHCP4_CB_PERIODIC_FETCH_UPDATES_FAIL error on periodic attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this periodic attempt failed.
...
...
@@ -60,12 +66,6 @@ The server will continue to operate but won't make any further attempts
to fetch configuration updates. The administrator must fix the configuration
in the database and reload (or restart) the server.
% DHCP4_CB_ON_DEMAND_FETCH_UPDATES_FAIL error on demand attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this on demand attempt failed.
The sole argument which is returned to the config-backend-pull command
caller too contains the reason for failure.
% DHCP4_CLASS_ASSIGNED %1: client packet has been assigned to the following class(es): %2
This debug message informs that incoming packet has been assigned to specified
class or classes. This is a normal behavior and indicates successful operation.
...
...
src/bin/dhcp6/dhcp6_messages.mes
View file @
0eafeb60
...
...
@@ -53,6 +53,12 @@ by the process. The signal will be handled before the server starts
waiting for next packets. The argument specifies the next signal to
be handled by the server.
% DHCP6_CB_ON_DEMAND_FETCH_UPDATES_FAIL error on demand attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this on demand attempt failed.
The sole argument which is returned to the config-backend-pull command
caller too contains the reason for failure.
% DHCP6_CB_PERIODIC_FETCH_UPDATES_FAIL error on periodic attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this periodic attempt failed.
...
...
@@ -67,12 +73,6 @@ The server will continue to operate but won't make any further attempts
to fetch configuration updates. The administrator must fix the configuration
in the database and reload (or restart) the server.
% DHCP6_CB_ON_DEMAND_FETCH_UPDATES_FAIL error on demand attempt to fetch configuration updates from the configuration backend(s): %1
This error message is issued when the server attempted to fetch
configuration updates from the database and this on demand attempt failed.
The sole argument which is returned to the config-backend-pull command
caller too contains the reason for failure.
% DHCP6_CLASS_ASSIGNED %1: client packet has been assigned to the following class(es): %2
This debug message informs that incoming packet has been assigned to specified
class or classes. This is a normal behavior and indicates successful operation.
...
...
src/bin/netconf/tests/parser_unittests.cc
View file @
0eafeb60
// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2018
-2019
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
...
...
src/hooks/dhcp/flex_option/flex_option_messages.mes
View file @
0eafeb60
...
...
@@ -28,4 +28,3 @@ hexadecimal is not) are provided.
% FLEX_OPTION_UNLOAD Flex Option hooks library has been unloaded
This info message indicates that the Flex Option hooks library has been
unloaded.
src/lib/dhcp/option_int.h
View file @
0eafeb60
// Copyright (C) 2012-201
6
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2012-201
9
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
...
...
src/lib/dhcp/option_int_array.h
View file @
0eafeb60
// Copyright (C) 2012-201
6
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2012-201
9
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
...
...
src/lib/dhcp/tests/pkt6_unittest.cc
View file @
0eafeb60
// Copyright (C) 2011-201
8
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2011-201
9
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
...
...
src/lib/dhcpsrv/alloc_engine_messages.mes
View file @
0eafeb60
# Copyright (C) 2015-201
8
Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2015-201
9
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
...
...
src/lib/dhcpsrv/d2_client_mgr.cc
View file @
0eafeb60
// Copyright (C) 2014-201
5
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014-201
9
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
...
...
src/lib/dhcpsrv/d2_client_mgr.h
View file @
0eafeb60
// Copyright (C) 2014-201
8
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014-201
9
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
...
...
src/lib/dhcpsrv/tests/d2_udp_unittest.cc
View file @
0eafeb60
// Copyright (C) 2014-201
8
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014-201
9
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment