]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
New command line options in manpages too
authorWillem Toorop <willem@nlnetlabs.nl>
Mon, 23 Dec 2013 13:32:37 +0000 (14:32 +0100)
committerWillem Toorop <willem@nlnetlabs.nl>
Mon, 23 Dec 2013 13:32:37 +0000 (14:32 +0100)
drill/drill.1.in
drill/drill.c
examples/ldns-dane.1.in
examples/ldns-dane.c

index 778ba249639d0e7595b75a7a661569ee0d0c794f..b6d74f6554d7f4c98ca1a43b4c3c1fcb2b41ae9d 100644 (file)
@@ -82,6 +82,11 @@ the type arguments are not used.
 Chase the signature(s) of 'name' to a known key or as high up in
 the tree as possible.
 
+.TP
+\fB\-I  \fIIPv4 or IPv6 address\fR
+Source address to query from.  The source address has to be present
+on an interface of the host running drill.
+
 .TP
 \fB\-V \fIlevel\fR
 Be more verbose. Set level to 5 to see the actual query that is sent.
index e54615789c12a6801ccaa6e76f66390331b58ec5..b967ad949c8de96c1c32f15c4a5168ea73830198 100644 (file)
@@ -29,11 +29,11 @@ usage(FILE *stream, const char *progname)
        fprintf(stream, "\n\targuments may be placed in random order\n");
        fprintf(stream, "\n  Options:\n");
        fprintf(stream, "\t-D\t\tenable DNSSEC (DO bit)\n");
-       fprintf(stream, "\t-I\t\tsource address to query from\n");
 #ifdef HAVE_SSL
        fprintf(stream, "\t-T\t\ttrace from the root down to <name>\n");
        fprintf(stream, "\t-S\t\tchase signature(s) from <name> to a know key [*]\n");
 #endif /*HAVE_SSL*/
+       fprintf(stream, "\t-I <address>\tsource address to query from\n");
        fprintf(stream, "\t-V <number>\tverbosity (0-5)\n");
        fprintf(stream, "\t-Q\t\tquiet mode (overrules -V)\n");
        fprintf(stream, "\n");
index 8f05d7f681a174efa109472ad90cfc2976fb8f29..b65e64f0441fd3473dac6e664d30bed7298e931c 100644 (file)
@@ -151,6 +151,9 @@ Read TLSA record(s) from \fItlsafile\fR. When \fIname\fR and \fIport\fR
 are also given, only TLSA records that match the \fIname\fR, \fIport\fR and
 \fItransport\fR are used. Otherwise the owner name of the TLSA record(s)
 will be used to determine \fIname\fR, \fIport\fR and \fItransport\fR.
+.IP -T
+Return exit status 2 for PKIX validated connections without (secure)
+TLSA records(s)
 .IP -u
 Use UDP transport instead of TCP.
 .IP -v
index 2ade5c02717dc0d79f21222ca2616d390e30421b..93c18e548353d062aaa3237d9b4a7958b3f048f2 100644 (file)
@@ -125,7 +125,7 @@ print_usage(const char* progname)
        printf("\t-t <tlsafile>\tdo not use DNS, "
               "but read TLSA record(s) from <tlsafile>\n"
              );
-       printf("\t-T\t\tReturns exit status 2 for PKIX validated connections\n"
+       printf("\t-T\t\tReturn exit status 2 for PKIX validated connections\n"
               "\t\t\twithout (secure) TLSA records(s)\n");
        printf("\t-u\t\tuse UDP transport instead of TCP\n");
        printf("\t-v\t\tshow version and exit\n");