hostent结构介绍

来源:互联网 发布:mac按哪个键切换输入法 编辑:程序博客网 时间:2024/05/09 20:21

转自:http://blog.csdn.net/leewenjin/article/details/7394613

struct hostent结构体

这个数据结构是这样的: 
struct    hostent {
    const char    *h_name;    // 地址的正式名称。 
    char    **h_aliases;    //  空字节-地址的预备名称的指针。

    short    h_addrtype;    // 地址类型; 通常是AF_INET。 

    short    h_length;    // 地址的比特长度

    char    **h_addr_list;    //  零字节-主机网络地址指针。网络字节顺序。

   #define    h_addr    h_addr_list[0]    // h_addr 为 h_addr_list中的第一地址。 
};

 

typedef uint32_t in_addr_t;
struct in_addr
{
  in_addr_t s_addr;
};

gethostbyname() 成 功时返回一个指向结构体 hostent 的指针,或者 是个空 (NULL) 指针。


这里是个例子: 
#include <stdio.h>
#include <stdlib.h>
#include <netdb.h>
int main(void) {
    struct hostent *h;
    h = gethostbyname("www.126.com");
    if(h==NULL){
         herror("gethostbyname");
         exit(1);
    }
    printf("%s\n",h->h_name);
    printf("%d\n",h->h_addr);
    struct in_addr *in={h->h_addr};
    printf("%s\n",inet_ntoa(*in));
//    printf("IP Address : %s\n",inet_ntoa(*((struct in_addr *)h->h_addr)));
    return EXIT_SUCCESS;
}
在使用 gethostbyname() 的时候,你不能用perror() 打印错误信息 (因为 errno 没有使用),你应该调用 herror()。
gethostbyname()返回的 struct hostent 数据。