diff options
author | Jeff Layton <jlayton@redhat.com> | 2006-12-18 15:44:11 -0500 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2006-12-19 09:31:22 +1100 |
commit | 5d5d8dc1f093f73825b5c2fc814f0a9a565bd384 (patch) | |
tree | 038ba32fa564483813e310127ed88e34f825f5f8 /utils/mountd/mountd.c | |
parent | 9e1aa7b9a04776bd43eb75bef50a53f41e17b813 (diff) | |
download | nfs-utils-5d5d8dc1f093f73825b5c2fc814f0a9a565bd384.tar.gz nfs-utils-5d5d8dc1f093f73825b5c2fc814f0a9a565bd384.tar.xz nfs-utils-5d5d8dc1f093f73825b5c2fc814f0a9a565bd384.zip |
add -r flag to make mountd do reverse resolve of ipaddress on the fly
For those that want "traditional" showmount -a behavior from their mountd
(hostname:/path instead of ipaddr:/path). This patch adds a '-r' flag that
does a reverse-resolve for each IP address listed in the rmtab when
a dump operation is called.
Probably not a good idea for those concerned about performance, but since it's
not the default option, I don't see it being an issue.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'utils/mountd/mountd.c')
-rw-r--r-- | utils/mountd/mountd.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/mountd/mountd.c b/utils/mountd/mountd.c index e151fa2..ee6afe6 100644 --- a/utils/mountd/mountd.c +++ b/utils/mountd/mountd.c @@ -37,6 +37,7 @@ static void usage(const char *, int exitcode); static exports get_exportlist(void); static struct nfs_fh_len *get_rootfh(struct svc_req *, dirpath *, mountstat3 *, int v3); +int reverse_resolve = 0; int new_cache = 0; /* PRC: a high-availability callout program can be specified with -H @@ -557,7 +558,7 @@ main(int argc, char **argv) /* Parse the command line options and arguments. */ opterr = 0; - while ((c = getopt_long(argc, argv, "o:nFd:f:p:P:hH:N:V:vs:t:", longopts, NULL)) != EOF) + while ((c = getopt_long(argc, argv, "o:nFd:f:p:P:hH:N:V:vrs:t:", longopts, NULL)) != EOF) switch (c) { case 'o': descriptors = atoi(optarg); @@ -597,6 +598,9 @@ main(int argc, char **argv) case 'n': _rpcfdtype = SOCK_DGRAM; break; + case 'r': + reverse_resolve = 1; + break; case 's': if ((state_dir = xstrdup(optarg)) == NULL) { fprintf(stderr, "%s: xstrdup(%s) failed!\n", |