我正在使用在http://www.kutukupret.com/2009/09/28/gethostbyname-vs-getaddrinfo/中找到的这段代码来执行 dns 查找
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int main(int argc, char *argv[ ]) {
struct hostent *h;
/* error check the command line */
if(argc != 2) {
fprintf(stderr, "Usage: %s hostname\n", argv[0]);
exit(1);
}
/* get the host info */
if((h=gethostbyname(argv[1])) == NULL) {
herror("gethostbyname(): ");
exit(1);
}
else
printf("Hostname: %s\n", h->h_name);
printf("IP Address: %s\n", inet_ntoa(*((struct in_addr *)h->h_addr)));
return 0;
}
我正面临一个奇怪的事实
./test www.google.com
Hostname: www.l.google.com
IP Address: 209.85.148.103
工作正常,但如果我尝试解析不完整的 IP 地址,我会得到这个
./test 10.1.1
Hostname: 10.1.1
IP Address: 10.1.0.1
我预计会出现如下错误
./test www.google
gethostbyname(): : Unknown host
但该程序似乎有效。
知道为什么吗?