/* * gethostbyname tester. compile with: * * cc -o gethostbyname gethostbyname.c (SunOS 4.x) * * cc -o gethostbyname gethostbyname.c -lnsl (SunOS 5.x) * * run as: gethostbyname hostname * * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. */ #include #include #include #include #include #include main(argc, argv) int argc; char **argv; { struct hostent *hp; if (argc != 2) { fprintf(stderr, "usage: %s hostname\n", argv[0]); exit(1); } if (hp = gethostbyname(argv[1])) { printf("Hostname:\t%s\n", hp->h_name); printf("Aliases:\t"); while (hp->h_aliases[0]) printf("%s ", *hp->h_aliases++); printf("\n"); printf("Addresses:\t"); while (hp->h_addr_list[0]) printf("%s ", inet_ntoa(*(struct in_addr *) * hp->h_addr_list++)); printf("\n"); exit(0); } else { fprintf(stderr, "host %s not found\n", argv[1]); exit(1); } }