域名和网络地址结构体---struct hostent
Posted 爱橙子的OK绷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了域名和网络地址结构体---struct hostent相关的知识,希望对你有一定的参考价值。
该结构体定义如下:
struct hostent
char *h_name; //主机名,即官方域名
char **h_aliases; //主机所有别名构成的字符串数组,同一IP可绑定多个域名
int h_addrtype; //主机IP地址的类型,例如IPV4(AF_INET)还是IPV6
int h_length; //主机IP地址长度,IPV4地址为4,IPV6地址则为16
char **h_addr_list; /* 主机的ip地址,以网络字节序存储。若要打印出这个IP,需要调用inet_ntoa()。*/
;
使用gethostbyname函数可以利用字符串格式的域名获得IP地址,并且将地址信息装入 hostent 域名结构体。该函数定义如下:
具体示例如下:
#include <stdio.h>
#include <stdlib.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);
由于hostent结构体成员h_addr_list指向字符串指针数组,也就是说数组里元素 char *
, 但是 inet_ntoa() 需要的是 struct in_addr*
(存放IPV4地址信息),所以要使用struct in_addr*
进行强制类型转换。
那么为什么hostent结构体的h_addr_list里的元素是 char *
, 而不直接是 struct in_addr*
?答案如下:
反之,如果要利用IP地址获得域名,可以使用函数gethostbyaddr,定义如下:
以上是关于域名和网络地址结构体---struct hostent的主要内容,如果未能解决你的问题,请参考以下文章
Linux 内核 内存管理虚拟地址空间布局架构 ⑥ ( mm_struct 结构体源码 | vm_area_struct 结构体源码 )
Linux 内核 内存管理虚拟地址空间布局架构 ⑤ ( Linux 内核中对 “ 虚拟地址空间 “ 的描述 | task_struct 结构体源码 )