Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit bd7f85c

Browse files
committed
Merge branch '3842-delv-ns' into 'main'
implement "delv +ns" Closes #3842 See merge request isc-projects/bind9!7477
2 parents 2587fef + 155f6a2 commit bd7f85c

File tree

29 files changed

+753
-168
lines changed

29 files changed

+753
-168
lines changed

CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
6130. [func] The new "delv +ns" option activates name server mode,
2+
in which delv sets up an internal recursive
3+
resolver and uses that, rather than an external
4+
server, to look up the requested data. All messages
5+
sent and received during the resolution and
6+
validation process are logged. This can be used in
7+
place of "dig +trace"; it more accurately
8+
replicates the behavior of named when resolving
9+
a query. [GL #3842]
10+
111
6129. [cleanup] Value stored to 'source' during its initialization is
212
never read. [GL #3965]
313

bin/delv/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ AM_CPPFLAGS += \
44
-I$(top_builddir)/include \
55
$(LIBISC_CFLAGS) \
66
$(LIBDNS_CFLAGS) \
7+
$(LIBNS_CFLAGS) \
78
$(LIBISCCFG_CFLAGS)
89

910
AM_CPPFLAGS += \
@@ -17,4 +18,5 @@ delv_SOURCES = \
1718
delv_LDADD = \
1819
$(LIBISC_LIBS) \
1920
$(LIBDNS_LIBS) \
21+
$(LIBNS_LIBS) \
2022
$(LIBISCCFG_LIBS)

0 commit comments

Comments
 (0)