summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-02-02 22:07:37 +0000
committerTed Lemon <source@isc.org>2000-02-02 22:07:37 +0000
commit17149fb6497ba0b6adc7c1ae661e7dfd6a0bf16a (patch)
tree6b12ff03443fbcd11bbecbe4f6434bd48b72891d
parent528026f9095ee47b1dd037ce574651937ebb7221 (diff)
downloadisc-dhcp-3-BETA-1-PATCH-13.tar.gz
Update version number and changelogV3-BETA-1-PATCH-13
-rw-r--r--README8
-rw-r--r--RELNOTES57
-rw-r--r--includes/version.h2
3 files changed, 58 insertions, 9 deletions
diff --git a/README b/README
index 0ed9b9c9..6e49485f 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
Internet Software Consortium
Dynamic Host Configuration Protocol Distribution
- Version 3, Beta 1, Patchlevel 12
- November 12, 1999
+ Version 3, Beta 1, Patchlevel 13
+ February 2, 1999
README FILE
@@ -135,14 +135,14 @@ 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:
- zcat dhcp-3.0b1pl12.tar.gz |tar xvf -
+ zcat dhcp-3.0b1pl13.tar.gz |tar xvf -
On BSD/OS, you have to type gzcat, not zcat, and you may run into
similar problems on other operating systems.
CONFIGURING IT
-Now, cd to the dhcp-3.0b1pl12 subdirectory that you've just
+Now, cd to the dhcp-3.0b1pl13 subdirectory that you've just
created and configure the source tree by typing:
./configure
diff --git a/RELNOTES b/RELNOTES
index 22997c13..45776e60 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,11 +1,11 @@
nternet Software Consortium
Dynamic Host Configuration Protocol Distribution
- Version 3, Beta 1, Patchlevel 12
- November 13, 1999
+ Version 3, Beta 1, Patchlevel 13
+ February 2, 1999
Release Notes
-This is a development snapshot of Version 3 of the Internet Software
+This is a beta release of Version 3 of the Internet Software
Consortium DHCP Distribution.
PLANS
@@ -38,6 +38,56 @@ Watt at Perkin-Elmer, Irina Goble at Integrated Measurement Systems,
and Brian Murrell at BC Tel Advanced Communications. I'd like to
express my thanks to all of these good people here.
+
+ Changes since November 13, 1999
+
+- Fix a core dump that would occur when an option parse failed.
+
+- Use open to create the client temporary script files instead of
+ creat, to avoid the possibility of a duplicate filename,
+
+- Free all the garbage hooked to the lease state structure when it's
+ freed (fixes a memory leak that could occur in some code paths).
+
+- Fix the tokenizer to support backslash quoting. The symptom people
+ generally noticed was that if you entered an MS-DOS filename, it
+ would get messed up in a nonsensical way on input - e.g., \foo would
+ become \ oo. In fact, it should be \\foo, and that would become
+ \foo.
+
+- Prevent inheritance of irrelevent descriptors when invoking client
+ scripts.
+
+- Fix a struct size dependency that was causing bpf and lpf to fail
+ miserably on the arm32 architecture.
+
+- Fix a bug in the uid_buf code that could cause core dumps.
+
+- Slightly different DNS hostname filtering code.
+
+- Fix a bug in the use of the known keyword.
+
+- Support server configuration directives in generic statement
+ blocks (e.g., inside of an if, which didn't work as documented
+ previously).
+
+- Fix a bug in the treatment of ranges outside of pool declarations.
+
+- Fix a case where an option cache that shouldn't have been
+ dereferenced was, resulting in a negative reference count and
+ dangling pointers.
+
+- Clarify dhcpd.conf documentation.
+
+- Fix a memory leak in the spawning class support code.
+
+- Implement a malloc debugging system for detecting memory leaks and
+ buffer overflows. Can be enabled by editing site.h and
+ recompiling.
+
+- Don't try to install a client script for Rhapsody, since there isn't
+ one.
+
Changes since November 11, 1999
- I "enhanced" Masayuki FUKUI's fix to the lease expiry timer code, and in
@@ -62,7 +112,6 @@ express my thanks to all of these good people here.
- Fix a bpf.c compilation problem on MacOS X.
-
Changes since October 27, 1999
- Fix some inconsistencies in printf formats and clean up some error
diff --git a/includes/version.h b/includes/version.h
index 6a860744..d56e5902 100644
--- a/includes/version.h
+++ b/includes/version.h
@@ -1,3 +1,3 @@
/* Current version of ISC DHCP Distribution. */
-#define DHCP_VERSION "V3.0b1pl12"
+#define DHCP_VERSION "V3.0b1pl13"