forked from unpbook/unpv13e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhostent3.c
64 lines (54 loc) · 1.37 KB
/
hostent3.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "unp.h"
void pr_ipv4(char **);
int
main(int argc, char **argv)
{
char *ptr, **pptr;
struct hostent *hptr;
while (--argc > 0) {
ptr = *++argv;
if ( (hptr = gethostbyname(ptr)) == NULL) {
err_msg("gethostbyname error for host: %s: %s",
ptr, hstrerror(h_errno));
continue;
}
printf("official host name: %s\n", hptr->h_name);
for (pptr = hptr->h_aliases; *pptr != NULL; pptr++)
printf(" alias: %s\n", *pptr);
switch (hptr->h_addrtype) {
case AF_INET:
pr_ipv4(hptr->h_addr_list);
break;
default:
err_ret("unknown address type");
break;
}
}
exit(0);
}
/*
* Print the array of IPv4 addresses that is returned.
* Also call gethostbyaddr_r() for each IP address and print the name.
*/
/* begin pr_ipv4 */
void
pr_ipv4(char **listptr)
{
struct in_addr inaddr;
struct hostent *hptr, hent;
char buf[8192];
int h_errno;
for ( ; *listptr != NULL; listptr++) {
inaddr = *((struct in_addr *) (*listptr));
printf(" IPv4 address: %s", Inet_ntoa(inaddr));
if ( (hptr = gethostbyaddr_r((char *) &inaddr, sizeof(struct in_addr),
AF_INET, &hent,
buf, sizeof(buf), &h_errno)) == NULL)
printf(" (gethostbyaddr failed: %s)\n", hstrerror(h_errno));
else if (hptr->h_name != NULL)
printf(" name = %s\n", hptr->h_name);
else
printf(" (no hostname returned by gethostbyaddr)\n");
}
}
/* end pr_ipv4 */