Bob Halley
22457624d3
deal with 0 TTL glue
2001-02-08 19:14:58 +00:00
Andreas Gustafsson
8ed67113ec
there is no need for each dispatch to have a separate reference to
...
the blackhole list; they can use the blackhole list of the dispatch
manager directly. This eliminates some unsafe unlocked accesses to
the reference count of the blackhole list dns_acl_t object
2001-02-08 18:25:09 +00:00
Bob Halley
4ff3597979
In ns_server_setdebuglevel():
...
Fixed "comparison of unsigned expression < 0 is always false".
Marked server parameter as UNUSED.
2001-02-08 18:01:33 +00:00
Brian Wellington
019fefd77d
spelling & capitalization
2001-02-08 02:15:34 +00:00
Mark Andrews
f765672e93
731. [bug] certian zone errors could cause named-checkzone to
...
fail ungracefully. [RT #819 ]
2001-02-08 01:52:33 +00:00
Brian Wellington
91425b5e72
730. [bug] lwres_getaddrinfo() returns the correct result when
...
it fails to contact a server. [RT #768 ]
2001-02-08 00:31:21 +00:00
Brian Wellington
1938554ccc
consolidate duplicated code
2001-02-08 00:04:11 +00:00
Mark Andrews
df0bcff664
extend change #727 to check returned address length for zero.
2001-02-07 23:40:28 +00:00
Brian Wellington
b18a5b6730
729. [port] pthread_setconcurrency() needs to be called on Solaris.
2001-02-07 21:20:05 +00:00
Brian Wellington
744304361c
actually call isc_thread_setconcurrency()
2001-02-07 21:16:12 +00:00
Brian Wellington
4cc2a6e261
Mention that the key must be defined in the server configuration file with the
...
same name and secret.
2001-02-07 20:27:40 +00:00
Andreas Gustafsson
1964de81da
UNUSED() macro added in 1.79 was in the wrong place
2001-02-07 20:05:15 +00:00
Andreas Gustafsson
91f74728a7
UNUSED()
2001-02-07 20:03:23 +00:00
Andreas Gustafsson
23d0a2b591
transfer-source entries mentioned ip_addr but not port;
...
notify-source was missing
2001-02-07 19:13:00 +00:00
Mark Andrews
90f92d9f81
RDNC -> RNDC [RT# 816]
2001-02-07 13:31:27 +00:00
Mark Andrews
e880677f63
728. [bug] Fix comment processing on master file directives.
...
[RT# 757]
2001-02-07 13:24:19 +00:00
Brian Wellington
e618d503ba
Remove (now unused) code for handling queries.
2001-02-07 05:11:58 +00:00
Brian Wellington
98c80a3456
do_next_response() was unlinking an event from the wrong list
2001-02-07 03:01:19 +00:00
Brian Wellington
abc0c36dc3
The ISC__BUFFER_INIT macro had a typo.
2001-02-07 01:36:12 +00:00
Brian Wellington
1e78000f6e
mention that if the server is running setuid, it won't be able to bind to new
...
privileged ports on reload.
2001-02-07 00:57:53 +00:00
Brian Wellington
dfceef7e68
rndc trace now takes an optional level parameter.
2001-02-07 00:50:44 +00:00
Andreas Gustafsson
328b080b4a
727. [port] Work around OS bug where accept() succeeds but
...
fails to fill in the peer address of the accepted
connection, by treating it as an error rather than
an assertion failure. [RT #809 ]
2001-02-07 00:06:03 +00:00
Brian Wellington
9e560b59a7
726. [func] Implement the "trace" and "notrace" commands in rndc.
2001-02-06 23:57:16 +00:00
Andreas Gustafsson
9a3ee1570d
"hard" errors in accept() were handled really badly. They were logged
...
twice, and the socket object for the new socket was never destroyed,
causing the server to hang on exit (if multithreaded) or dump core on exit
(if singlethreaded). Now the only difference between "hard" and "soft" errors
is that the latter are not logged.
2001-02-06 23:43:01 +00:00
Andreas Gustafsson
8dab78b566
as a workaround for various OS bugs, do not INSIST() that
...
accept() returns a valid peer address; instead just log an ugly error message
and continue if the peer address is left unchanged or insane by accept()
[RT #809 ]
2001-02-06 23:04:02 +00:00
Brian Wellington
f96ad6baf5
Only check to make sure that the full number of bytes were sent if the
...
send operation succeeded. I'm still not convinced that send_done() works
correctly, but making other changes that look correct causes assertion failures.
2001-02-06 22:54:27 +00:00
Andreas Gustafsson
7aa594f022
resource limits are implemented
2001-02-06 16:50:33 +00:00
Brian Wellington
4239aef2fb
client_request was not freeing its event.
2001-02-06 02:43:42 +00:00
Brian Wellington
2305225a1c
The interface name field was only partially initialized.
2001-02-06 01:20:46 +00:00
Brian Wellington
770d3b36da
ctx->checkfree was only being initialized if USE_INTERNAL_MALLOC was on.
2001-02-05 23:48:25 +00:00
Brian Wellington
ae73c78406
some data structures weren't freed.
2001-02-05 23:09:05 +00:00
Brian Wellington
0ef3f4fb41
When memsetting the entropy pool to 0, the count should be the size in bytes,
...
not words.
2001-02-05 23:00:18 +00:00
Andreas Gustafsson
2fdaa940cc
pulled down stuff from 9.1 release branch
2001-02-05 21:46:25 +00:00
Brian Wellington
7aac083523
The flags field of the request structures were not initialized (thanks, purify)
2001-02-05 20:48:42 +00:00
Andreas Gustafsson
fbe35d126f
grammar
2001-02-05 20:36:57 +00:00
Brian Wellington
c716477d2e
don't free the structure twice (thanks, Andreas)
2001-02-05 20:29:56 +00:00
Brian Wellington
ebb48478db
minor updates
2001-02-05 20:15:28 +00:00
Brian Wellington
15bc0af6a1
chain_name() built the fully qualified name in a very inefficient way.
...
Reversing the order of the concatenations makes it significantly faster.
2001-02-05 20:07:20 +00:00
Brian Wellington
5e8ff069e2
clean up the code to determine if dns_rdata_freestruct() needs to be called
2001-02-05 19:50:42 +00:00
Brian Wellington
b7cd261f2f
dns_name_concatenate(foo, NULL, bar, NULL) -> dns_name_copy(foo, bar, NULL)
2001-02-05 19:47:05 +00:00
Brian Wellington
71d2d34e98
The new generated files should be ignored.
2001-02-05 18:56:10 +00:00
Brian Wellington
f91dc72b42
725. [bug] Installing man pages could fail.
2001-02-04 15:52:44 +00:00
Eric Luce
2bd433da87
Add support for generating DVI and PDF files for the ARM. Also make a nominum specific style sheet for printing that includes section numbers in the subsections.
2001-02-02 22:37:20 +00:00
Andreas Gustafsson
6b2f58f5c1
removed inappropriate 'Any bitstring labels are in canonical form' comments
2001-02-02 22:08:27 +00:00
Andreas Gustafsson
9090a36b61
min-refresh-time, max-refresh-time, min-retry-time, max-retry-time
...
are not boolean options, and they should be listed among the zone options, too
2001-02-02 20:23:28 +00:00
Andreas Gustafsson
86c1ac00da
represent the lists containing descriptions of named.conf options as DocBook
...
<variablelist> elements instead of <informaltable> elements. This is more correct, and
will eliminate some multi-page tables that have been giving JadeTeX grief.
2001-02-02 19:51:58 +00:00
Stephen Jacob
524222cfb8
Added purify support (${PURIFY} to link lines) to remaining
...
Makefile.in's in bin/*
2001-02-02 18:53:05 +00:00
Andreas Gustafsson
6905fe248b
build success reported on HP-UX 10.20 [RT #788 ]
2001-02-02 17:53:30 +00:00
Andreas Gustafsson
7e361074bc
724. [func] New libisc functions isc_netaddr_any(),
...
isc_netaddr_any6().
2001-02-02 02:48:47 +00:00
Andreas Gustafsson
547f79ea44
line break in --with-purify help message cause configure --help output
...
to look ugly
2001-02-02 02:10:32 +00:00