Я использую этот фрагмент кода, который я нашел в 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
, но программа, похоже, работает.
Есть идеи, почему?