diff options
author | Jeremy Allison <jra@samba.org> | 1997-12-13 14:16:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-12-13 14:16:07 +0000 |
commit | d80b0cb645f81d16734929a0b27a91c6650499bb (patch) | |
tree | ebfed2074213433bc32bdb4e449b793a819b8628 /source/utils/nmblookup.c | |
parent | 273978b7d72955efcc0e0d9e87438b45f51c163d (diff) | |
download | samba-d80b0cb645f81d16734929a0b27a91c6650499bb.tar.gz samba-d80b0cb645f81d16734929a0b27a91c6650499bb.tar.xz samba-d80b0cb645f81d16734929a0b27a91c6650499bb.zip |
This is it ! The mega-merge of the JRA_NMBD_REWRITE branch
back into the main tree.
For the cvs logs of all the files starting nmbd_*.c, look
in the JRA_NMBD_REWRITE branch. That branch has now been
discontinued.
Jeremy.
Diffstat (limited to 'source/utils/nmblookup.c')
-rw-r--r-- | source/utils/nmblookup.c | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/source/utils/nmblookup.c b/source/utils/nmblookup.c index 1f74d7a130f..b14887afabe 100644 --- a/source/utils/nmblookup.c +++ b/source/utils/nmblookup.c @@ -186,9 +186,10 @@ int main(int argc,char *argv[]) for (i=optind;i<argc;i++) { - int retries = 2; + int j, count, retries = 2; char *p; struct in_addr ip; + struct in_addr *ip_list; fstrcpy(lookup,argv[i]); @@ -219,26 +220,23 @@ int main(int argc,char *argv[]) retries = 1; } - if (name_query(ServerFD,lookup,lookup_type,use_bcast,recursion_desired, - bcast_addr,&ip,NULL)) - { - printf("%s %s\n",inet_ntoa(ip),lookup); - - /* We can only do find_status if the ip address returned - was valid - ie. name_query returned true. - */ - if (find_status) - { - printf("Looking up status of %s\n",inet_ntoa(ip)); - name_status(ServerFD,lookup,lookup_type,True,ip,NULL,NULL,NULL); - printf("\n"); - } - } - else - { - printf("name_query failed to find name %s\n", lookup); + if ((ip_list = name_query(ServerFD,lookup,lookup_type,use_bcast,recursion_desired, + bcast_addr,&count,NULL))) { + for (j=0;j<count;j++) + printf("%s %s<%02x>\n",inet_ntoa(ip_list[j]),lookup, lookup_type); + + /* We can only do find_status if the ip address returned + was valid - ie. name_query returned true. + */ + if (find_status) { + printf("Looking up status of %s\n",inet_ntoa(ip_list[0])); + name_status(ServerFD,lookup,lookup_type,True,ip_list[0],NULL,NULL,NULL); + printf("\n"); + } + } else { + printf("name_query failed to find name %s\n", lookup); } } - + return(0); } |