diff options
author | itojun <itojun@pkgsrc.org> | 2003-06-17 07:50:44 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2003-06-17 07:50:44 +0000 |
commit | 894bf24a52d3106a21c4846440103822777e1fe2 (patch) | |
tree | ff1128e812123cd25a9330c9bc00715beb18646b /net/nsd/patches | |
parent | 7fff8b1dedd1a85dd53b668c1ded4489558b2ea9 (diff) | |
download | pkgsrc-894bf24a52d3106a21c4846440103822777e1fe2.tar.gz |
upgrade to 1.1
1.1
=============
FEATURES:
- ANSI C
- autoconf/configure
- new parser
- support for various RR types in zonec
- support for UNKN RR types
BUG FIXES:
- lots of zone parsing errors eliminated
- empty node matching bug gives NXDOMAIN
1.0.3
=============
This release is a bug fix release and does not add any new features.
BUG FIXES:
- Ignore SIGPIPE errors (bug #43).
- Keep track of TCP child servers and restart if necessary.
(bug #55)
- Handle database reload failures correctly.
- Close UDP sockets in TCP child servers.
- Handle escaped characters (besides \.) in labels.
- Preserve the query's RD flag in the answer.
1.0.2
=============
FEATURES:
- -DBIND8_STATS to enable bind8 like [NX]STATS
- -t flag to make nsd chroot to a certain directory
- -s flag to make nsd produce statistics every s seconds
- /etc/nsd/nsdc.conf to overwrite default variables
for nsdc.sh
- less loggin and more radical tcp connection (mis)handling
- prefork -n processes to handle tcp connections
- multiple -a flags
CHANGES:
- named.stats file functionality is removed
BUG FIXES:
- couple of pedantic fixes in C code
- last zone in database axfr bug fixed
- nsdc update wont update bug fixed
Diffstat (limited to 'net/nsd/patches')
-rw-r--r-- | net/nsd/patches/patch-aa | 18 | ||||
-rw-r--r-- | net/nsd/patches/patch-ab | 13 |
2 files changed, 0 insertions, 31 deletions
diff --git a/net/nsd/patches/patch-aa b/net/nsd/patches/patch-aa deleted file mode 100644 index 066d7934582..00000000000 --- a/net/nsd/patches/patch-aa +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2002/08/28 16:05:52 itojun Exp $ - ---- Makefile.orig Thu Aug 22 20:40:52 2002 -+++ Makefile Thu Aug 29 01:02:59 2002 -@@ -67,12 +67,11 @@ - # - - # The directory where the nsd nsdc and zonec binaries will be installed --PREFIX = /usr/local - NSDBINDIR = ${PREFIX}/sbin - NSDMANDIR = ${PREFIX}/man/man8 - - # The directory where the master zone files are located --NSDZONESDIR = ${PREFIX}/etc/nsd -+NSDZONESDIR = ${PKG_SYSCONFDIR} - - # The file containing the list of the zones to be compiled into the NSD database - NSDZONES = ${NSDZONESDIR}/nsd.zones diff --git a/net/nsd/patches/patch-ab b/net/nsd/patches/patch-ab deleted file mode 100644 index ffe015e931c..00000000000 --- a/net/nsd/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2002/09/03 14:55:05 itojun Exp $ - ---- rfc1876.c- Tue Sep 3 23:52:42 2002 -+++ rfc1876.c Tue Sep 3 23:53:02 2002 -@@ -39,7 +39,7 @@ - - val = mantissa * poweroften[exponent]; - -- (void) sprintf(retbuf,"%d.%.2d", val/100, val%100); -+ (void) sprintf(retbuf,"%lu.%.2lu", val/100, val%100); - return (retbuf); - } - |