-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgethostbyname.c
More file actions
executable file
·41 lines (36 loc) · 1 KB
/
Copy pathgethostbyname.c
File metadata and controls
executable file
·41 lines (36 loc) · 1 KB
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
//
// Created by Administrator on 2018/12/29.
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netdb.h>
void error_handling(char *message);
int main(int argc, char *argv[]) {
int i;
struct hostent *host;
if (argc != 2) {
printf("Usage: %s <addr> \n", argv[0]);
exit(1);
}
host=gethostbyname(argv[1]);
if (!host) {
error_handling("gethost... error");
}
printf("Official name: %s\n", host->h_name);
for (i = 0; host->h_aliases[i]; ++i) {
printf("Aliases %d: %s\n", i+1, host->h_aliases[i]);
}
printf("Address type: %s\n", (host->h_addrtype==AF_INET)?"AF_INET":"AF_INET6");
for (i = 0; host->h_addr_list[i]; ++i) {
printf("IP addr %d: %s \n", i+1, inet_ntoa(*(struct in_addr*)host->h_addr_list[i]));
}
return 0;
}
void error_handling(char *message) {
fputs(message, stderr);
fputc('\n', stderr);
exit(1);
}