Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
ee4429e1
Commit
ee4429e1
authored
Dec 07, 2000
by
Michael Sawyer
Browse files
600. [bug] Reverse lookups sometimes failed in dig, etc...
parent
168ec3b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
ee4429e1
600. [bug] Reverse lookups sometimes failed in dig, etc...
599. [func] Updated the libisc log API to support i18n message
arguments to isc_log_{,v}write{,1}.
...
...
bin/dig/dighost.c
View file @
ee4429e1
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dighost.c,v 1.16
8
2000/12/0
2 05:13:37 gson
Exp $ */
/* $Id: dighost.c,v 1.16
9
2000/12/0
7 19:56:04 mws
Exp $ */
/*
* Notice to programmers: Do not use this code as an example of how to
...
...
@@ -206,6 +206,7 @@ get_reverse(char reverse[MXNAME], char *value, isc_boolean_t nibble) {
isc_result_t
result
;
result
=
DNS_R_BADDOTTEDQUAD
;
reverse
[
0
]
=
0
;
debug
(
"get_reverse(%s)"
,
value
);
if
(
strspn
(
value
,
"0123456789."
)
==
strlen
(
value
))
{
...
...
bin/dig/nslookup.c
View file @
ee4429e1
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: nslookup.c,v 1.6
4
2000/12/0
6 22:38:49 tale
Exp $ */
/* $Id: nslookup.c,v 1.6
5
2000/12/0
7 19:56:05 mws
Exp $ */
#include <config.h>
...
...
@@ -351,6 +351,7 @@ detailsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers,
dns_name_t
*
name
;
dns_rdataset_t
*
rdataset
=
NULL
;
dns_rdata_t
rdata
=
DNS_RDATA_INIT
;
char
namestore
[
DNS_NAME_MAXTEXT
+
1
];
/* Leave room for the NULL */
char
*
ptr
;
char
*
input
;
...
...
@@ -389,6 +390,19 @@ detailsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers,
for
(
rdataset
=
ISC_LIST_HEAD
(
name
->
list
);
rdataset
!=
NULL
;
rdataset
=
ISC_LIST_NEXT
(
rdataset
,
link
))
{
if
(
section
==
DNS_SECTION_QUESTION
)
{
dns_name_format
(
name
,
namestore
,
sizeof
(
namestore
));
printf
(
"
\t
%s, "
,
namestore
);
dns_rdatatype_format
(
rdataset
->
type
,
namestore
,
sizeof
(
namestore
));
printf
(
"type = %s, "
,
namestore
);
dns_rdataclass_format
(
rdataset
->
rdclass
,
namestore
,
sizeof
(
namestore
));
printf
(
"class = %s
\n
"
,
namestore
);
}
loopresult
=
dns_rdataset_first
(
rdataset
);
while
(
loopresult
==
ISC_R_SUCCESS
)
{
dns_rdataset_current
(
rdataset
,
&
rdata
);
...
...
@@ -550,6 +564,7 @@ show_settings(isc_boolean_t full, isc_boolean_t serv_only) {
isc_sockaddr_t
sockaddr
;
isc_buffer_t
*
b
=
NULL
;
isc_result_t
result
;
dig_searchlist_t
*
listent
;
srv
=
ISC_LIST_HEAD
(
server_list
);
...
...
@@ -580,7 +595,13 @@ show_settings(isc_boolean_t full, isc_boolean_t serv_only) {
printf
(
"
\t
timeout = %d
\t\t
retry = %d
\t
port = %d
\n
"
,
timeout
,
tries
,
port
);
printf
(
"
\t
querytype = %-8s
\t
class = %s
\n
"
,
deftype
,
defclass
);
printf
(
"
\t
domain = %s
\n
"
,
fixeddomain
);
if
(
fixeddomain
[
0
]
!=
0
)
printf
(
"
\t
domain = %s
\n
"
,
fixeddomain
);
else
if
(
!
ISC_LIST_EMPTY
(
search_list
))
{
listent
=
ISC_LIST_HEAD
(
search_list
);
printf
(
"
\t
domain = %s
\n
"
,
listent
->
origin
);
}
else
printf
(
"
\t
domain =
\n
"
);
}
...
...
@@ -637,7 +658,7 @@ setoption(char *opt) {
safecpy
(
defclass
,
&
opt
[
3
],
MXRD
);
}
else
if
(
strncasecmp
(
opt
,
"type="
,
5
)
==
0
)
{
if
(
testtype
(
&
opt
[
5
]))
safecpy
(
deftype
,
&
opt
[
3
],
MXRD
);
safecpy
(
deftype
,
&
opt
[
5
],
MXRD
);
}
else
if
(
strncasecmp
(
opt
,
"ty="
,
3
)
==
0
)
{
if
(
testtype
(
&
opt
[
3
]))
safecpy
(
deftype
,
&
opt
[
3
],
MXRD
);
...
...
@@ -664,6 +685,10 @@ setoption(char *opt) {
timeout
=
atoi
(
&
opt
[
8
]);
}
else
if
(
strncasecmp
(
opt
,
"t="
,
2
)
==
0
)
{
timeout
=
atoi
(
&
opt
[
2
]);
}
else
if
(
strncasecmp
(
opt
,
"rec"
,
3
)
==
0
)
{
recurse
=
ISC_TRUE
;
}
else
if
(
strncasecmp
(
opt
,
"norec"
,
5
)
==
0
)
{
recurse
=
ISC_FALSE
;
}
else
if
(
strncasecmp
(
opt
,
"retry="
,
6
)
==
0
)
{
tries
=
atoi
(
&
opt
[
6
]);
}
else
if
(
strncasecmp
(
opt
,
"ret="
,
4
)
==
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment