summaryrefslogtreecommitdiff
path: root/RELNOTES
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2015-10-20 15:22:11 -0400
committerThomas Markwalder <tmark@isc.org>2015-10-20 15:22:11 -0400
commit555093daef4124a3a648811f6168abe7c1728521 (patch)
tree0f0e3f73a5fcc71e6a031481aaf9c02ff10f842c /RELNOTES
parentb00492cb84a151c0e219b6575553a168f6a8c680 (diff)
downloadisc-dhcp-555093daef4124a3a648811f6168abe7c1728521.tar.gz
[master] Corrected reverse-ordered RELNOTES entries after 4.3.3
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES72
1 files changed, 36 insertions, 36 deletions
diff --git a/RELNOTES b/RELNOTES
index d7d41d2c..e6b1a5f2 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -54,30 +54,22 @@ by Eric Young (eay@cryptsoft.com).
Changes since 4.3.3
-- Added a parameter, authoring-byte-order, to the lease file. This value
- is automatically added to the top of new lease files by the server and
- indicates the internal byte order (big endian or little endian) of the
- server. This permits lease files generated on a server with one form of
- byte order to be used on a server with the opposite form. Our thanks to
- Timothe Litt for calling this to our attention and for the suggestions
- he provided.
- [ISC-Bugs #38396]
-
-- Added dhcpv6 and delayed-ack to settings listed in the "Features:"
- section of the configure script output. Additionally, all of the
- features reported on will now always show either a "yes" or "no"
- value. Prior to this features left to their default setting would
- not show a value.
- [ISC-Bugs #40381]
+- Corrected a static analyzer warning in common/execute.c
+ [ISC-Bugs #40374]
-- Added the lease address to the end of the debug level log message
- emitted when an existing lease is renewed within the dhcp-cache-threshold.
- Thanks to Nathan Neulinger at Missouri S&T for suggesting the change.
- [ISC-Bugs #40598]
+- ISC DHCP now follows the common convention to use the base name a
+ program is invoked with (aka argv[0], vs. a builtin name) for
+ logs. This should help differentiate syslog entires for DHCPv4 and
+ DHCPv6 servers. You can define OLD_LOG_NAME in includes/site.h to
+ keep the previous behavior.
+ [ISC-Bugs #38692]
-- Corrected compilation errors that prohibited building the server
- and its ATF unit tests when failover is disabled.
- [ISC-Bugs #40372]
+- The linux packet filter code now correctly treats only least significant
+ 12 bits an inbound packet's TCI value as the VLAN id (per IEEE 802.1Q).
+ Prior to this it was using the entire 16 bit value as the VLAN id and
+ incorrectly discarding packets. Thanks to Jiri Popelka at Red Hat for
+ reporting this issue and supplying its patch.
+ [ISC-Bugs #40591]
- Fixed several issues static analysis issues such as potential null
references, unchecked strdup returns. Thanks to Bill Parker (wp02855 at
@@ -86,22 +78,30 @@ by Eric Young (eay@cryptsoft.com).
[ISC-Bugs #40754]
[ISC-Bugs #40823]
-- The linux packet filter code now correctly treats only least significant
- 12 bits an inbound packet's TCI value as the VLAN id (per IEEE 802.1Q).
- Prior to this it was using the entire 16 bit value as the VLAN id and
- incorrectly discarding packets. Thanks to Jiri Popelka at Red Hat for
- reporting this issue and supplying its patch.
- [ISC-Bugs #40591]
+- Corrected compilation errors that prohibited building the server
+ and its ATF unit tests when failover is disabled.
+ [ISC-Bugs #40372]
-- Corrected a static analyzer warning in common/execute.c
- [ISC-Bugs #40374]
+- Added the lease address to the end of the debug level log message
+ emitted when an existing lease is renewed within the dhcp-cache-threshold.
+ Thanks to Nathan Neulinger at Missouri S&T for suggesting the change.
+ [ISC-Bugs #40598]
-- ISC DHCP now follows the common convention to use the base name a
- program is invoked with (aka argv[0], vs. a builtin name) for
- logs. This should help differentiate syslog entires for DHCPv4 and
- DHCPv6 servers. You can define OLD_LOG_NAME in includes/site.h to
- keep the previous behavior.
- [ISC-Bugs #38692]
+- Added dhcpv6 and delayed-ack to settings listed in the "Features:"
+ section of the configure script output. Additionally, all of the
+ features reported on will now always show either a "yes" or "no"
+ value. Prior to this features left to their default setting would
+ not show a value.
+ [ISC-Bugs #40381]
+
+- Added a parameter, authoring-byte-order, to the lease file. This value
+ is automatically added to the top of new lease files by the server and
+ indicates the internal byte order (big endian or little endian) of the
+ server. This permits lease files generated on a server with one form of
+ byte order to be used on a server with the opposite form. Our thanks to
+ Timothe Litt for calling this to our attention and for the suggestions
+ he provided.
+ [ISC-Bugs #38396]
Changes since 4.3.3b1
- None