]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[v4_1_esv] Pre-release tag prep for 4.1-ESV-R16b1: version #, copyright etc...
authorThomas Markwalder <tmark@isc.org>
Wed, 11 Dec 2019 19:54:03 +0000 (14:54 -0500)
committerThomas Markwalder <tmark@isc.org>
Wed, 11 Dec 2019 19:54:03 +0000 (14:54 -0500)
Changes to be committed:
modified:   LICENSE
modified:   README
modified:   RELNOTES
modified:   client/dhclient.c
modified:   configure.ac
modified:   includes/omapip/omapip_p.h
modified:   includes/osdep.h
modified:   omapip/errwarn.c
modified:   relay/dhcrelay.c
modified:   server/class.c
modified:   server/db.c
modified:   server/dhcp.c
modified:   server/dhcpd.8
modified:   server/dhcpd.c
modified:   server/dhcpd.conf.5
modified:   server/dhcpleasequery.c
modified:   server/dhcpv6.c
modified:   server/mdb6.c

18 files changed:
LICENSE
README
RELNOTES
client/dhclient.c
configure.ac
includes/omapip/omapip_p.h
includes/osdep.h
omapip/errwarn.c
relay/dhcrelay.c
server/class.c
server/db.c
server/dhcp.c
server/dhcpd.8
server/dhcpd.c
server/dhcpd.conf.5
server/dhcpleasequery.c
server/dhcpv6.c
server/mdb6.c

diff --git a/LICENSE b/LICENSE
index a8de3ed4ebe03be842d3f391c79ea0cea17c8852..eadd727a605e7481dac17c01f9efeb755b06c4be 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-# Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+# Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
 # Copyright (c) 1995-2003 by Internet Software Consortium
 #
 # Permission to use, copy, modify, and distribute this software for any
diff --git a/README b/README
index 11e6314cada7e212aa187b88d4b2500182666c54..f3385bce7478eb1926285622c4ef7b73a997a43d 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
               Internet Systems Consortium DHCP Distribution
-                          Version 4.1-ESV-R15
-                            31 July 2017
+                          Version 4.1-ESV-R16b1
+                            18 December 2019
 
                              README FILE
 
@@ -98,7 +98,7 @@ directory, it may not have up-to-date information).
 
                            RELEASE STATUS
 
-This is ISC DHCP 4.1-ESV-R15, an extended support (ESV) release that
+This is ISC DHCP 4.1-ESV-R16b1, an extended support (ESV) release that
 provides patches for several bugs.
 
 ESVs are intended for users who have longer upgrade constraints 
@@ -139,12 +139,12 @@ information.   On Digital Unix, type ``man pfilt''.
 To build the DHCP Distribution, unpack the compressed tar file using
 the tar utility and the gzip command - type something like:
 
-       gunzip dhcp-4.1-ESV-R15.tar.gz
-       tar xvf dhcp-4.1-ESV-R15.tar
+       gunzip dhcp-4.1-ESV-R16b1.tar.gz
+       tar xvf dhcp-4.1-ESV-R16b1.tar
 
                            CONFIGURING IT
 
-Now, cd to the dhcp-4.1-ESV-R15 subdirectory that you've just created and
+Now, cd to the dhcp-4.1-ESV-R16b1 subdirectory that you've just created and
 configure the source tree by typing:
 
        ./configure
index 534ce2f8d81b9c2cccb867c14ba98480acf3c6ab..b1392b5f56b0c70337eb239a7def0e2a9389b16d 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,13 +1,13 @@
               Internet Systems Consortium DHCP Distribution
 
-                          Version 4.1-ESV-R15
-                              31 July 2017
+                          Version 4.1-ESV-R16b1
+                              18 December 2019
 
                               Release Notes
 
                                NEW FEATURES
 
-Version 4.1-ESV-R15 is a maintenance release of an extended support version
+Version 4.1-ESV-R16b1 is a maintenance release of an extended support version
 (ESV) release.  ESVs are intended for users who have longer upgrade
 constraints.  Please see our web page
 http://www.isc.org/downloads/software-support-policy/
index 5015388cc18c68b978da730c2f13a9e5998f045e..554256f97c80490bac0f37d4b77838d170078761 100644 (file)
@@ -3,7 +3,7 @@
    DHCP Client. */
 
 /*
- * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1995-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
@@ -66,7 +66,7 @@ struct data_string default_duid;
 #define ASSERT_STATE(state_is, state_shouldbe) {}
 
 static const char copyright[] = 
-"Copyright 2004-2017 Internet Systems Consortium.";
+"Copyright 2004-2019 Internet Systems Consortium.";
 static const char arr [] = "All rights reserved.";
 static const char message [] = "Internet Systems Consortium DHCP Client";
 static const char url [] = 
index 5c04b5b39e5b9e83e54f91789f5ee32d1f04ac2d..92723a2f13fb03478771dcde7ea82aa75c7be5f5 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([DHCP], [4.1-ESV-R16-dev], [dhcp-users@isc.org])
+AC_INIT([DHCP], [4.1-ESV-R16b1], [dhcp-users@isc.org])
 
 # we specify "foreign" to avoid having to have the GNU mandated files,
 # like AUTHORS, COPYING, and such
index 4369410d72053c06bfbe7fa3449d56116b709c74..d32f4d3ad4446b4d2a0aec6aadd2edd7f3042cf0 100644 (file)
@@ -3,7 +3,7 @@
    Private master include file for the OMAPI library. */
 
 /*
- * Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
index 9fceaec9a30d9262da2d23477465cad4d4cd2d85..f607b4e7a0b2de0af003b9e232da4f7645725f0d 100644 (file)
@@ -3,7 +3,7 @@
    Operating system dependencies... */
 
 /*
- * Copyright (c) 2004-2005,2007-2010,2014 by Internet Systems Consortium,
+ * Copyright (c) 2004-2019 by Internet Systems Consortium,
  *                                        Inc. ("ISC")
  * Copyright (c) 1996-2003 by Internet Software Consortium
  *
index 42a3fad2a1b0e1a6bac442147f5ec6ef8257bd09..e65424e3d68ac3a6bb0a0e0df18859e708737855 100644 (file)
@@ -4,7 +4,7 @@
 
 /*
  * Copyright (c) 1995 RadioMail Corporation.
- * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
index 64238a305eaa1eed8de0f4835756371f5d8645f3..407b481881360aadc45cdb05d3f86a8ab4b15589 100644 (file)
@@ -126,7 +126,7 @@ static int strip_relay_agent_options(struct interface_info *,
 static void request_v4_interface(const char* name, int flags);
 
 static const char copyright[] =
-"Copyright 2004-2017 Internet Systems Consortium.";
+"Copyright 2004-2019 Internet Systems Consortium.";
 static const char arr[] = "All rights reserved.";
 static const char message[] =
 "Internet Systems Consortium DHCP Relay Agent";
index c19cdc18c3d0199e2e8be2589d0b28d637a1b0d8..a02d3ef3ab43252a819ec4cec1c35798e9a11eeb 100644 (file)
@@ -3,8 +3,7 @@
    Handling for client classes. */
 
 /*
- * Copyright (c) 2009,2012-2015 by Internet Systems Consortium, Inc. ("ISC")
- * Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1998-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
index 28576073105367d5988f61e8f286e3134aba2205..952a3bca00dd3a180c4b67ca5ce120ff6b06c227 100644 (file)
@@ -3,7 +3,7 @@
    Persistent database management routines for DHCPD... */
 
 /*
- * Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1995-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
index a7693cdab868401c77ae04e7ee3706407c1ee5d6..8b69b530065d174ee905631903110656e125bbab 100644 (file)
@@ -3,7 +3,7 @@
    DHCP Protocol engine. */
 
 /*
- * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1995-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
index cf897f12c83c14e424dd27f0c2010c593fbba8d2..dc92bc58d7d712649088dacb50e509790852a818 100644 (file)
@@ -1,7 +1,6 @@
 .\"    dhcpd.8
 .\"
-.\" Copyright (c) 2009-2016 by Internet Systems Consortium, Inc. ("ISC")
-.\" Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC")
+.\" Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
 .\" Copyright (c) 1996-2003 by Internet Software Consortium
 .\"
 .\" Permission to use, copy, modify, and distribute this software for any
index 5e593593f5b52bc3f0b56699534fb373773d9ab3..678ec9c5874d228898697370f3fcb1dbbce315c3 100644 (file)
@@ -3,7 +3,7 @@
    DHCP Server Daemon. */
 
 /*
- * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996-2003 by Internet Software Consortium
  *
  * Permission to use, copy, modify, and distribute this software for any
@@ -27,7 +27,7 @@
  */
 
 static const char copyright[] =
-"Copyright 2004-2017 Internet Systems Consortium.";
+"Copyright 2004-2019 Internet Systems Consortium.";
 static const char arr [] = "All rights reserved.";
 static const char message [] = "Internet Systems Consortium DHCP Server";
 static const char url [] =
index d2734aa4e52b22b8ffdb781cbb4908e1bf6130b0..d65f478ac79cfd18c0bf7a9515b0fbe9929d5525 100644 (file)
@@ -1,6 +1,6 @@
 .\"    dhcpd.conf.5
 .\"
-.\" Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+.\" Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
 .\" Copyright (c) 1996-2003 by Internet Software Consortium
 .\"
 .\" Permission to use, copy, modify, and distribute this software for any
index 5fc40276b4656feeecbf66e1b3130186da0819e5..202dc2da81d0e847ba77c78bb8b42c8acb1e3350 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2012 by Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2006-2007 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006-2019 by Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
index ffd5e84560e077dbbcc900e03a35bab179bf93f5..df660dc172b98c3f6ef6aceedf0aa6c58f8fbea1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006-2019 by Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
index c914986c3746e9be18892110068934beaa8b233b..0ef711e88db034f8434fef16f9d59bd58e852b37 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2010-2012 by Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2007-2008 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2007-2019 by Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above