From 8bde1c7cb31f18ea1706ac8d0407b9dd0fcc2bbb Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Fri, 8 Feb 2008 13:27:49 +0000 Subject: [PATCH] fixes. git-svn-id: file:///svn/unbound/trunk@941 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 3 +++ doc/unbound.conf.5 | 27 +++++++++++++++++++-------- makedist.sh | 4 ++++ testcode/do-tests.sh | 2 +- util/netevent.h | 2 +- 5 files changed, 28 insertions(+), 10 deletions(-) diff --git a/doc/Changelog b/doc/Changelog index f7b29e396..967d92f69 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -5,6 +5,9 @@ - fixup misclassification of root referral with NS in answer when validating a nonrec query. - tag 0.9 + - layout of manpages, spelling fix in header, manpages process by + makedist, list asynclook and tcpstream tests as ldns-testns + required. 7 February 2008: Wouter - moved up all current level 2 to be level 3. And 3 to 4. diff --git a/doc/unbound.conf.5 b/doc/unbound.conf.5 index c771c23e9..3c154627c 100644 --- a/doc/unbound.conf.5 +++ b/doc/unbound.conf.5 @@ -467,7 +467,8 @@ for completeness and to satisfy some DNS update tools. Default content: .nf local\-zone: "localhost." static local\-data: "localhost. 10800 IN NS localhost." -local\-data: "localhost. 10800 IN SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" +local\-data: "localhost. 10800 IN + SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" local\-data: "localhost. 10800 IN A 127.0.0.1" local\-data: "localhost. 10800 IN AAAA ::1" .fi @@ -477,17 +478,26 @@ Default content: .nf local\-zone: "127.in\-addr.arpa." static local\-data: "127.in\-addr.arpa. 10800 IN NS localhost." -local\-data: "127.in\-addr.arpa. 10800 IN SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" -local\-data: "1.0.0.127.in\-addr.arpa. 10800 IN PTR localhost." +local\-data: "127.in\-addr.arpa. 10800 IN + SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" +local\-data: "1.0.0.127.in\-addr.arpa. 10800 IN + PTR localhost." .fi .TP 10 \h'5'\fIreverse IPv6 loopback\fR Default content: .nf -local\-zone: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." static -local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN NS localhost." -local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" -local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN PTR localhost." +local\-zone: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0. + 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." static +local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0. + 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN + NS localhost." +local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0. + 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN + SOA localhost. nobody.invalid. 1 3600 1200 604800 10800" +local\-data: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0. + 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 10800 IN + PTR localhost." .fi .TP 10 \h'5'\fIreverse RFC1918 local use zones\fR @@ -503,7 +513,8 @@ Reverse data for zones 0.in\-addr.arpa, 254.169.in\-addr.arpa, \h'5'\fIreverse RFC4291 IP6 unspecified\fR Reverse data for zone .nf -0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. +0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0. +0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. .fi .TP 10 \h'5'\fIreverse RFC4193 IPv6 Locally Assigned Local Addresses\fR diff --git a/makedist.sh b/makedist.sh index 394232c61..2b029d2d0 100755 --- a/makedist.sh +++ b/makedist.sh @@ -213,6 +213,10 @@ fi replace_all doc/README replace_all doc/unbound.8 +replace_all doc/unbound.conf.5 +replace_all doc/unbound-checkconf.8 +replace_all doc/unbound-host.1 +replace_all doc/libunbound.3 info "Renaming Unbound directory to unbound-$version." cd .. diff --git a/testcode/do-tests.sh b/testcode/do-tests.sh index ac10dd66e..553ad9fcd 100755 --- a/testcode/do-tests.sh +++ b/testcode/do-tests.sh @@ -2,7 +2,7 @@ NEED_SPLINT='00-lint.tpkg' NEED_DOXYGEN='01-doc.tpkg' -NEED_LDNS_TESTNS='fwd_no_edns.tpkg fwd_tcp_tc.tpkg fwd_tcp.tpkg fwd_three_service.tpkg fwd_three.tpkg fwd_ttlexpire.tpkg fwd_udp.tpkg fwd_tcp_tc6.tpkg fwd_compress_c00c.tpkg fwd_ancil.tpkg stat_timer.tpkg' +NEED_LDNS_TESTNS='fwd_no_edns.tpkg fwd_tcp_tc.tpkg fwd_tcp.tpkg fwd_three_service.tpkg fwd_three.tpkg fwd_ttlexpire.tpkg fwd_udp.tpkg fwd_tcp_tc6.tpkg fwd_compress_c00c.tpkg fwd_ancil.tpkg stat_timer.tpkg 05-asynclook.tpkg stream_tcp.tpkg' NEED_XXD='fwd_compress_c00c.tpkg' NEED_NC='fwd_compress_c00c.tpkg' diff --git a/util/netevent.h b/util/netevent.h index c45ee4814..a023ce2f3 100644 --- a/util/netevent.h +++ b/util/netevent.h @@ -272,7 +272,7 @@ void comm_base_dispatch(struct comm_base* b); /** * Exit from dispatch loop. - * @param b: the communicatio base that is in dispatch(). + * @param b: the communication base that is in dispatch(). */ void comm_base_exit(struct comm_base* b); -- 2.47.2