diff options
-rw-r--r-- | README | 12 | ||||
-rw-r--r-- | RELNOTES | 9 | ||||
-rw-r--r-- | common/comapi.c | 2 | ||||
-rw-r--r-- | common/dispatch.c | 2 | ||||
-rw-r--r-- | common/ethernet.c | 2 | ||||
-rw-r--r-- | common/fddi.c | 2 | ||||
-rw-r--r-- | common/icmp.c | 2 | ||||
-rw-r--r-- | common/memory.c | 2 | ||||
-rw-r--r-- | common/nit.c | 2 | ||||
-rw-r--r-- | common/raw.c | 4 | ||||
-rw-r--r-- | common/resolv.c | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | dhcpctl/cltest.c | 2 | ||||
-rw-r--r-- | dst/dst_api.c | 3 | ||||
-rw-r--r-- | dst/prandom.c | 4 | ||||
-rw-r--r-- | minires/ns_date.c | 4 | ||||
-rw-r--r-- | minires/ns_verify.c | 4 | ||||
-rw-r--r-- | minires/res_init.c | 4 | ||||
-rw-r--r-- | minires/res_query.c | 4 | ||||
-rw-r--r-- | minires/res_update.c | 4 | ||||
-rw-r--r-- | server/class.c | 2 | ||||
-rw-r--r-- | server/salloc.c | 2 |
22 files changed, 39 insertions, 37 deletions
@@ -1,6 +1,6 @@ Internet Systems Consortium DHCP Distribution - Version 4.0.0a2 - July 10, 2007 + Version 4.0.0a3 + September 5, 2007 README FILE @@ -92,7 +92,7 @@ directory, it may not have up-to-date information). RELEASE STATUS -This is the first alpha realse of ISC DHCP 4.0.0, a feature release +This is the third alpha realse of ISC DHCP 4.0.0, a feature release bent to the purpose of implementing DHCPv6. In this release, the DHCPv6 server should be fully functional on Linux, @@ -129,12 +129,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.0.0a2.tar.gz - tar xvf dhcp-4.0.0a2.tar + gunzip dhcp-4.0.0a3.tar.gz + tar xvf dhcp-4.0.0a3.tar CONFIGURING IT -Now, cd to the dhcp-dhcp-4.0.0a2 subdirectory that you've just +Now, cd to the dhcp-dhcp-4.0.0a3 subdirectory that you've just created and configure the source tree by typing: ./configure @@ -1,6 +1,6 @@ Internet Systems Consortium DHCP Distribution - Version 4.0.0a2 - July 10, 2007 + Version 4.0.0a3 + September 5, 2007 Release Notes @@ -19,9 +19,10 @@ release, which will be addressed shortly: - Only Solaris, Linux, FreeBSD, NetBSD, and OpenBSD are supported. -- There is no DHCPv6 Relay support. +- There is no DHCPv6 Relay Agent implementation. There are only DHCPv6 + Server and Client implementations. -- Only a single fixed address is supported per IA. +- Only a single address is supported per IA. - IA_TA addresses are not supported. diff --git a/common/comapi.c b/common/comapi.c index b9dc9830..a173360b 100644 --- a/common/comapi.c +++ b/common/comapi.c @@ -3,7 +3,7 @@ OMAPI object interfaces for the DHCP server. */ /* - * Copyright (c) 2004-2006 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1999-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any diff --git a/common/dispatch.c b/common/dispatch.c index cc50f9f1..475fad98 100644 --- a/common/dispatch.c +++ b/common/dispatch.c @@ -3,7 +3,7 @@ Network input dispatcher... */ /* - * Copyright (c) 2004-2006 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2007 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/common/ethernet.c b/common/ethernet.c index 12d6d57f..831e90b2 100644 --- a/common/ethernet.c +++ b/common/ethernet.c @@ -3,7 +3,7 @@ Packet assembly code, originally contributed by Archie Cobbs. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/common/fddi.c b/common/fddi.c index 9d4446c8..26253bc3 100644 --- a/common/fddi.c +++ b/common/fddi.c @@ -3,7 +3,7 @@ Packet assembly code, originally contributed by Archie Cobbs. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/common/icmp.c b/common/icmp.c index fa34c40e..b3dee506 100644 --- a/common/icmp.c +++ b/common/icmp.c @@ -4,7 +4,7 @@ responses. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/common/memory.c b/common/memory.c index cd1de555..78f6d7e1 100644 --- a/common/memory.c +++ b/common/memory.c @@ -3,7 +3,7 @@ Memory-resident database... */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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/common/nit.c b/common/nit.c index ca36ee3a..7d92733f 100644 --- a/common/nit.c +++ b/common/nit.c @@ -4,7 +4,7 @@ with one crucial tidbit of help from Stu Grossmen. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/common/raw.c b/common/raw.c index 55929abd..2bf118d9 100644 --- a/common/raw.c +++ b/common/raw.c @@ -1,4 +1,4 @@ -/* socket.c +/* raw.c BSD raw socket interface code... */ @@ -16,7 +16,7 @@ Sigh. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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/common/resolv.c b/common/resolv.c index 38396772..572ca026 100644 --- a/common/resolv.c +++ b/common/resolv.c @@ -3,7 +3,7 @@ Parser for /etc/resolv.conf file. */ /* - * Copyright (c) 2004-2006 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2007 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 diff --git a/configure.ac b/configure.ac index 706e80f1..9ca0a429 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([DHCP], [4.0.0a2], [dhcp-users@isc.org]) +AC_INIT([DHCP], [4.0.0a3], [dhcp-users@isc.org]) # we specify "foreign" to avoid having to have the GNU mandated files, # like AUTHORS, COPYING, and such diff --git a/dhcpctl/cltest.c b/dhcpctl/cltest.c index d7ecfe72..9741c36e 100644 --- a/dhcpctl/cltest.c +++ b/dhcpctl/cltest.c @@ -3,7 +3,7 @@ Example program that uses the dhcpctl library. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 2000-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any diff --git a/dst/dst_api.c b/dst/dst_api.c index 65015537..d9b7c395 100644 --- a/dst/dst_api.c +++ b/dst/dst_api.c @@ -1,9 +1,10 @@ #ifndef LINT -static const char rcsid[] = "$Header: /tmp/cvstest/DHCP/dst/dst_api.c,v 1.4 2007/08/22 13:41:37 shane Exp $"; +static const char rcsid[] = "$Header: /tmp/cvstest/DHCP/dst/dst_api.c,v 1.5 2007/09/05 17:32:10 dhankins Exp $"; #endif /* * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc. + * Portions Copyright (c) 2007 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 diff --git a/dst/prandom.c b/dst/prandom.c index 2311ccc3..26c94703 100644 --- a/dst/prandom.c +++ b/dst/prandom.c @@ -1,9 +1,9 @@ #ifndef LINT -static const char rcsid[] = "$Header: /tmp/cvstest/DHCP/dst/prandom.c,v 1.4 2007/07/13 06:43:42 shane Exp $"; +static const char rcsid[] = "$Header: /tmp/cvstest/DHCP/dst/prandom.c,v 1.5 2007/09/05 17:32:10 dhankins Exp $"; #endif /* * Portions Copyright (c) 1995-1998 by Trusted Information Systems, Inc. - * Portions Copyright (c) 2007 by Internet Systems Consortium, Inc. + * Portions Copyright (c) 2007 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 diff --git a/minires/ns_date.c b/minires/ns_date.c index c24b2b74..352f48d2 100644 --- a/minires/ns_date.c +++ b/minires/ns_date.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1999-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -22,7 +22,7 @@ */ #ifndef lint -static const char rcsid[] = "$Id: ns_date.c,v 1.5 2007/07/13 06:43:42 shane Exp $"; +static const char rcsid[] = "$Id: ns_date.c,v 1.6 2007/09/05 17:32:10 dhankins Exp $"; #endif /* Import. */ diff --git a/minires/ns_verify.c b/minires/ns_verify.c index c1586eb6..8b36d6c3 100644 --- a/minires/ns_verify.c +++ b/minires/ns_verify.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1999-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -22,7 +22,7 @@ */ #ifndef lint -static const char rcsid[] = "$Id: ns_verify.c,v 1.8 2007/08/22 13:41:37 shane Exp $"; +static const char rcsid[] = "$Id: ns_verify.c,v 1.9 2007/09/05 17:32:10 dhankins Exp $"; #endif /* Import. */ diff --git a/minires/res_init.c b/minires/res_init.c index bfcd60e9..c2c744e3 100644 --- a/minires/res_init.c +++ b/minires/res_init.c @@ -52,7 +52,7 @@ */ /* - * Portions Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Portions Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Portions Copyright (c) 1995-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -76,7 +76,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char sccsid[] = "@(#)res_init.c 8.1 (Berkeley) 6/7/93"; -static const char rcsid[] = "$Id: res_init.c,v 1.8 2007/07/13 06:43:42 shane Exp $"; +static const char rcsid[] = "$Id: res_init.c,v 1.9 2007/09/05 17:32:10 dhankins Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/minires/res_query.c b/minires/res_query.c index 23ad1ed1..ff119e4c 100644 --- a/minires/res_query.c +++ b/minires/res_query.c @@ -52,7 +52,7 @@ */ /* - * Portions Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Portions Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Portions Copyright (c) 1996-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -76,7 +76,7 @@ #if defined(LIBC_SCCS) && !defined(lint) static const char sccsid[] = "@(#)res_query.c 8.1 (Berkeley) 6/4/93"; -static const char rcsid[] = "$Id: res_query.c,v 1.7 2007/07/13 06:43:42 shane Exp $"; +static const char rcsid[] = "$Id: res_query.c,v 1.8 2007/09/05 17:32:10 dhankins Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> diff --git a/minires/res_update.c b/minires/res_update.c index d084e71b..3892008a 100644 --- a/minires/res_update.c +++ b/minires/res_update.c @@ -1,9 +1,9 @@ #if !defined(lint) && !defined(SABER) -static const char rcsid[] = "$Id: res_update.c,v 1.14 2007/07/13 06:43:42 shane Exp $"; +static const char rcsid[] = "$Id: res_update.c,v 1.15 2007/09/05 17:32:10 dhankins Exp $"; #endif /* not lint */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/server/class.c b/server/class.c index c7d38150..b07140ca 100644 --- a/server/class.c +++ b/server/class.c @@ -3,7 +3,7 @@ Handling for client classes. */ /* - * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004,2007 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 diff --git a/server/salloc.c b/server/salloc.c index bc7bda39..4f55d761 100644 --- a/server/salloc.c +++ b/server/salloc.c @@ -3,7 +3,7 @@ Memory allocation for the DHCP server... */ /* - * Copyright (c) 2004-2006 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2007 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 |