From: Wlodek Wencel Date: Mon, 22 Jun 2020 11:57:32 +0000 (+0200) Subject: [#1288] code changes for 1.7.9 release X-Git-Tag: Kea-1.7.9~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=099412a53c61c5e503cb1d00c9e33e1f48a17449;p=thirdparty%2Fkea.git [#1288] code changes for 1.7.9 release --- diff --git a/ChangeLog b/ChangeLog index b7f45aacc6..05791ce55e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +Kea 1.7.9 (development) released on June 24, 2020 + 1762. [bug] fdupont Fixed the control command execution: either it was deferred by DHCP packet processing or a spurious error message was logged. diff --git a/configure.ac b/configure.ac index eb2bc77d82..8cb9850e08 100755 --- a/configure.ac +++ b/configure.ac @@ -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.8-git, kea-dev@lists.isc.org) +AC_INIT(kea,1.7.9-git, kea-dev@lists.isc.org) AC_CONFIG_SRCDIR(README) # serial-tests is not available in automake version before 1.13, so diff --git a/src/bin/agent/agent_parser.cc b/src/bin/agent/agent_parser.cc index 92f5286ca2..46ab60570e 100644 --- a/src/bin/agent/agent_parser.cc +++ b/src/bin/agent/agent_parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/bin/agent/agent_parser.h b/src/bin/agent/agent_parser.h index 15adcc71a0..e310eeb5a5 100644 --- a/src/bin/agent/agent_parser.h +++ b/src/bin/agent/agent_parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -1833,41 +1833,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const unsigned char yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const signed char yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const short yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const unsigned char yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const unsigned char yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if AGENT_DEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/bin/agent/location.hh b/src/bin/agent/location.hh index d04c03073c..0f5d9d7e5f 100644 --- a/src/bin/agent/location.hh +++ b/src/bin/agent/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/bin/agent/position.hh b/src/bin/agent/position.hh index 0b4fe04266..e228560576 100644 --- a/src/bin/agent/position.hh +++ b/src/bin/agent/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/bin/agent/stack.hh b/src/bin/agent/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/bin/agent/stack.hh +++ b/src/bin/agent/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/bin/d2/d2_parser.cc b/src/bin/d2/d2_parser.cc index b610ee479f..529c3dfa85 100644 --- a/src/bin/d2/d2_parser.cc +++ b/src/bin/d2/d2_parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/bin/d2/d2_parser.h b/src/bin/d2/d2_parser.h index d6eb6f90b8..4a92d2b00b 100644 --- a/src/bin/d2/d2_parser.h +++ b/src/bin/d2/d2_parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -2138,41 +2138,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const unsigned char yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const short yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const short yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const unsigned char yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const unsigned char yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if D2_PARSER_DEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/bin/d2/location.hh b/src/bin/d2/location.hh index 3d67f4eec6..e74cfea5cb 100644 --- a/src/bin/d2/location.hh +++ b/src/bin/d2/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/bin/d2/position.hh b/src/bin/d2/position.hh index 0b4fe04266..e228560576 100644 --- a/src/bin/d2/position.hh +++ b/src/bin/d2/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/bin/d2/stack.hh b/src/bin/d2/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/bin/d2/stack.hh +++ b/src/bin/d2/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/bin/dhcp4/dhcp4_parser.cc b/src/bin/dhcp4/dhcp4_parser.cc index 7912c90159..1efc043aed 100644 --- a/src/bin/dhcp4/dhcp4_parser.cc +++ b/src/bin/dhcp4/dhcp4_parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/bin/dhcp4/dhcp4_parser.h b/src/bin/dhcp4/dhcp4_parser.h index c58202809c..c991310509 100644 --- a/src/bin/dhcp4/dhcp4_parser.h +++ b/src/bin/dhcp4/dhcp4_parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -4700,41 +4700,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const short yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const short yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const short yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const short yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const short yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if PARSER4_DEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/bin/dhcp4/location.hh b/src/bin/dhcp4/location.hh index 0b3df2b6b6..d4192bb2a5 100644 --- a/src/bin/dhcp4/location.hh +++ b/src/bin/dhcp4/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/bin/dhcp4/position.hh b/src/bin/dhcp4/position.hh index 0b4fe04266..e228560576 100644 --- a/src/bin/dhcp4/position.hh +++ b/src/bin/dhcp4/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/bin/dhcp4/stack.hh b/src/bin/dhcp4/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/bin/dhcp4/stack.hh +++ b/src/bin/dhcp4/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/bin/dhcp4/tests/kea_controller_unittest.cc b/src/bin/dhcp4/tests/kea_controller_unittest.cc index 66ccbaf255..f006611b21 100644 --- a/src/bin/dhcp4/tests/kea_controller_unittest.cc +++ b/src/bin/dhcp4/tests/kea_controller_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2014-2020 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_parser.cc b/src/bin/dhcp6/dhcp6_parser.cc index a67ec73307..333ecdf0e1 100644 --- a/src/bin/dhcp6/dhcp6_parser.cc +++ b/src/bin/dhcp6/dhcp6_parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/bin/dhcp6/dhcp6_parser.h b/src/bin/dhcp6/dhcp6_parser.h index fbf439b608..797fefc855 100644 --- a/src/bin/dhcp6/dhcp6_parser.h +++ b/src/bin/dhcp6/dhcp6_parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -4853,41 +4853,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const short yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const short yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const short yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const short yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const short yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if PARSER6_DEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/bin/dhcp6/location.hh b/src/bin/dhcp6/location.hh index 28d27622e4..1ffdeab4bc 100644 --- a/src/bin/dhcp6/location.hh +++ b/src/bin/dhcp6/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/bin/dhcp6/position.hh b/src/bin/dhcp6/position.hh index 0b4fe04266..e228560576 100644 --- a/src/bin/dhcp6/position.hh +++ b/src/bin/dhcp6/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/bin/dhcp6/stack.hh b/src/bin/dhcp6/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/bin/dhcp6/stack.hh +++ b/src/bin/dhcp6/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/bin/dhcp6/tests/kea_controller_unittest.cc b/src/bin/dhcp6/tests/kea_controller_unittest.cc index 96f013a1de..351455baaf 100644 --- a/src/bin/dhcp6/tests/kea_controller_unittest.cc +++ b/src/bin/dhcp6/tests/kea_controller_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2012-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2012-2020 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/location.hh b/src/bin/netconf/location.hh index c6a1c1fec2..39b22ecbdc 100644 --- a/src/bin/netconf/location.hh +++ b/src/bin/netconf/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/bin/netconf/netconf_parser.cc b/src/bin/netconf/netconf_parser.cc index 9e10894f77..42d8ecffe3 100644 --- a/src/bin/netconf/netconf_parser.cc +++ b/src/bin/netconf/netconf_parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/bin/netconf/netconf_parser.h b/src/bin/netconf/netconf_parser.h index 9d92a12f7c..032cdebebf 100644 --- a/src/bin/netconf/netconf_parser.h +++ b/src/bin/netconf/netconf_parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -1907,41 +1907,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const unsigned char yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const signed char yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const short yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const unsigned char yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const unsigned char yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if NETCONF_DEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/bin/netconf/position.hh b/src/bin/netconf/position.hh index 0b4fe04266..e228560576 100644 --- a/src/bin/netconf/position.hh +++ b/src/bin/netconf/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/bin/netconf/stack.hh b/src/bin/netconf/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/bin/netconf/stack.hh +++ b/src/bin/netconf/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/lib/asiolink/interval_timer.h b/src/lib/asiolink/interval_timer.h index d61988fba9..a942d8e525 100644 --- a/src/lib/asiolink/interval_timer.h +++ b/src/lib/asiolink/interval_timer.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2020 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/lib/dhcpsrv/csv_lease_file4.h b/src/lib/dhcpsrv/csv_lease_file4.h index 67df846536..3e102df8ec 100644 --- a/src/lib/dhcpsrv/csv_lease_file4.h +++ b/src/lib/dhcpsrv/csv_lease_file4.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2014-2020 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/lib/dhcpsrv/csv_lease_file6.h b/src/lib/dhcpsrv/csv_lease_file6.h index 84acbd0a85..3e0e989213 100644 --- a/src/lib/dhcpsrv/csv_lease_file6.h +++ b/src/lib/dhcpsrv/csv_lease_file6.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2014-2020 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/lib/dhcpsrv/dhcpsrv_messages.mes b/src/lib/dhcpsrv/dhcpsrv_messages.mes index 2ac5684c03..fe8b948aa7 100644 --- a/src/lib/dhcpsrv/dhcpsrv_messages.mes +++ b/src/lib/dhcpsrv/dhcpsrv_messages.mes @@ -1,4 +1,4 @@ -# Copyright (C) 2012-2019 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2012-2020 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/lib/dhcpsrv/timer_mgr.h b/src/lib/dhcpsrv/timer_mgr.h index cdb95887ea..a03c8156ed 100644 --- a/src/lib/dhcpsrv/timer_mgr.h +++ b/src/lib/dhcpsrv/timer_mgr.h @@ -1,4 +1,4 @@ -// Copyright (C) 2015-2017 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2015-2020 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/lib/eval/location.hh b/src/lib/eval/location.hh index fcfcc241bc..914e23f2e7 100644 --- a/src/lib/eval/location.hh +++ b/src/lib/eval/location.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Locations for Bison parsers in C++ diff --git a/src/lib/eval/parser.cc b/src/lib/eval/parser.cc index 6aa3bd2def..6c824d7333 100644 --- a/src/lib/eval/parser.cc +++ b/src/lib/eval/parser.cc @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton implementation for Bison LALR(1) parsers in C++ diff --git a/src/lib/eval/parser.h b/src/lib/eval/parser.h index d5e1a0a7e9..a752f55ade 100644 --- a/src/lib/eval/parser.h +++ b/src/lib/eval/parser.h @@ -1,4 +1,4 @@ -// A Bison parser, made by GNU Bison 3.6.2. +// A Bison parser, made by GNU Bison 3.6.4. // Skeleton interface for Bison LALR(1) parsers in C++ @@ -1973,41 +1973,41 @@ switch (yykind) // Tables. - // YYPACTSTATE-NUM -- Index in YYTABLE of the portion describing + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing // STATE-NUM. static const short yypact_[]; - // YYDEFACTSTATE-NUM -- Default reduction number in state STATE-NUM. + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. // Performed when YYTABLE does not specify something else to do. Zero // means the default is an error. static const signed char yydefact_[]; - // YYPGOTONTERM-NUM. + // YYPGOTO[NTERM-NUM]. static const short yypgoto_[]; - // YYDEFGOTONTERM-NUM. + // YYDEFGOTO[NTERM-NUM]. static const short yydefgoto_[]; - // YYTABLEYYPACT[STATE-NUM] -- What to do in state STATE-NUM. If + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If // positive, shift that token. If negative, reduce the rule whose // number is the opposite. If YYTABLE_NINF, syntax error. static const unsigned char yytable_[]; static const short yycheck_[]; - // YYSTOSSTATE-NUM -- The (internal number of the) accessing + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing // symbol of state STATE-NUM. static const signed char yystos_[]; - // YYR1YYN -- Symbol number of symbol that rule YYN derives. + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. static const signed char yyr1_[]; - // YYR2YYN -- Number of symbols on the right hand side of rule YYN. + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. static const signed char yyr2_[]; #if EVALDEBUG - // YYRLINEYYN -- Source line where rule number YYN was defined. + // YYRLINE[YYN] -- Source line where rule number YYN was defined. static const short yyrline_[]; /// Report on the debug stream that the rule \a r is going to be reduced. virtual void yy_reduce_print_ (int r) const; diff --git a/src/lib/eval/position.hh b/src/lib/eval/position.hh index 0b4fe04266..e228560576 100644 --- a/src/lib/eval/position.hh +++ b/src/lib/eval/position.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined in "location.hh". diff --git a/src/lib/eval/stack.hh b/src/lib/eval/stack.hh index b1ed919bb8..7efd893f7a 100644 --- a/src/lib/eval/stack.hh +++ b/src/lib/eval/stack.hh @@ -1,5 +1,5 @@ -// Generated 202005250532 -// A Bison parser, made by GNU Bison 3.6.2. +// Generated 202006221148 +// A Bison parser, made by GNU Bison 3.6.4. // Starting with Bison 3.2, this file is useless: the structure it // used to define is now defined with the parser itself. diff --git a/src/lib/log/compiler/message.cc b/src/lib/log/compiler/message.cc index 93e9acd098..5d895465e1 100644 --- a/src/lib/log/compiler/message.cc +++ b/src/lib/log/compiler/message.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2016 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2020 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/lib/log/log_formatter.cc b/src/lib/log/log_formatter.cc index eb08d427f7..dce7fe990a 100644 --- a/src/lib/log/log_formatter.cc +++ b/src/lib/log/log_formatter.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2020 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/lib/log/log_formatter.h b/src/lib/log/log_formatter.h index 8963309e80..7fc67f14dc 100644 --- a/src/lib/log/log_formatter.h +++ b/src/lib/log/log_formatter.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2020 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/lib/log/tests/log_formatter_unittest.cc b/src/lib/log/tests/log_formatter_unittest.cc index 205050123f..c0cf8abd7b 100644 --- a/src/lib/log/tests/log_formatter_unittest.cc +++ b/src/lib/log/tests/log_formatter_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2020 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/lib/pgsql/testutils/pgsql_schema.cc b/src/lib/pgsql/testutils/pgsql_schema.cc index 7d6e5dfe66..f12bcbfef7 100644 --- a/src/lib/pgsql/testutils/pgsql_schema.cc +++ b/src/lib/pgsql/testutils/pgsql_schema.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2016-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2016-2020 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/lib/pgsql/testutils/pgsql_schema.h b/src/lib/pgsql/testutils/pgsql_schema.h index 2ebafa44b5..7a664ab432 100644 --- a/src/lib/pgsql/testutils/pgsql_schema.h +++ b/src/lib/pgsql/testutils/pgsql_schema.h @@ -1,4 +1,4 @@ -// Copyright (C) 2016-2019 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2016-2020 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/share/database/scripts/pgsql/dhcpdb_create.pgsql b/src/share/database/scripts/pgsql/dhcpdb_create.pgsql index ea4595978c..ce472c4fff 100644 --- a/src/share/database/scripts/pgsql/dhcpdb_create.pgsql +++ b/src/share/database/scripts/pgsql/dhcpdb_create.pgsql @@ -1,4 +1,4 @@ --- Copyright (C) 2012-2019 Internet Systems Consortium, Inc. ("ISC") +-- Copyright (C) 2012-2020 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