- 论坛徽章:
- 0
|
建议遇到错误,先用perror或herror得到错误信息,这样找起来起码有个方向。
参考一下下面的代码.
- #include <netdb.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, char* argv[])
- {
- struct hostent* hostInfo;
- struct in_addr address;
- struct in_addr** addrPtr;
- char** next;
- if (2 != argc)
- {
- fprintf(stderr, "必须带一个参数n");
- exit(EXIT_FAILURE);
- }
- if (inet_aton(argv[1], &address)) /*点分十进制格式*/
- {
- hostInfo = gethostbyaddr((char *)&address, sizeof(struct in_addr),
- AF_INET);
- }
- else /* 主机域名 */
- {
- hostInfo = gethostbyname(argv[1]);
- }
- if (NULL == hostInfo)
- {
- herror("look up host");
- exit(EXIT_FAILURE);
- }
- fprintf(stdout, "host name is %sn", hostInfo->h_name);
- /*
- * 如果有多个别名
- */
- if (hostInfo->h_aliases[0])
- {
- printf("Aliases: n");
- for (next = hostInfo->h_aliases; *next; ++next)
- printf("t%sn", *next);
- }
- printf("n");
- /*
- *多个地址
- */
- printf("Address: ");
- for (addrPtr = (struct in_addr **)hostInfo->h_addr_list;
- *addrPtr;
- addrPtr++)
- {
- printf("t%sn", inet_ntoa(**addrPtr));
- }
- printf("n");
- exit(EXIT_SUCCESS);
- }
复制代码 |
|