hostent是host entry的缩写,该结构体记录主机的信息,包括主机名,别名,地址类型,地址长度和地址列表。之所以主机的地址是一个列表的形式,原因是当一个主机有多个网络接口时,自然有多个地址。 hostent的定义如下: struct hostent { char *h_name; 地址的正式名字 char **h_aliases; 空字节,地址的预备名称的指针 char h_addrtype; 地址类型,通常是AF_INET. char h_length; 地址的比特长度 char **h_addr_list; 零字节,主机网络地址指针,网络字节顺序。 }; #define h_addr h_addr_list[0] h_addr_list中的第一个地址。 gethostbyname()函数包含在#include <netdb.h> 和 #include <sys/socket.h> 原型: struct hostent *gethostbyname(const char * name); 这个函数的传入值是域名或者主机名,传出值就是一个hosten的结构体,如果函数调用失败,返回NULL. 来看个例子:
#include <stdio.h> #include <stdlib.h> #include <netdb.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netinet/in.h> int main(int argc,char *argv[]) { struct hostent *h; if(argc!=2) { fprintf(stderr,"Usage:<可执行程序> <地址>"); exit(1); } if((h=gethostbyname(argv[1])) == NULL) { error("gethostbyname"); exit(1); } printf("Host name:%s\n",h->h_name); printf("IP Address:%s\n",inet_ntoa(*((struct in_addr *)h->h_addr))); printf("Length:%d\n",h->h_length); printf("h_addrtype:%d\n",h->h_addrtype); }
结果:
yang@liu:~/syc/第11章$ ./a.out www.ystruct.com Host name:www.ystruct.com IP Address:121.42.123.38 Length:4 h_addrtype:2