我是靠谱客的博主 会撒娇溪流,最近开发中收集的这篇文章主要介绍struct hostent结构体,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这个数据结构是这样的: 
struct    hostent {
    const char    *h_name;    // official name of host
    char    **h_aliases;    // alias list
    short    h_addrtype;    // host address type
    short    h_length;    // length of address
    char    **h_addr_list;    // list of addresses from name server
#define    h_addr    h_addr_list[0]    // address, for backward compatiblity
};

typedef uint32_t in_addr_t;


struct in_addr
{
  in_addr_t s_addr;
};
这里是这个数据结构的详细资料:  
struct hostent:  
  h_name – 地址的正式名称。 
  h_aliases – 空字节-地址的预备名称的指针。 
  h_addrtype –地址类型; 通常是AF_INET。  
  h_length – 地址的比特长度。 
  h_addr_list – 零字节-主机网络地址指针。网络字节顺序。 
  h_addr - h_addr_list中的第一地址。 
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("%sn",h->h_name);
    printf("%dn",h->h_addr);
    struct in_addr *in={h->h_addr};
    printf("%sn",inet_ntoa(*in));
//    printf("IP Address : %sn",inet_ntoa(*((struct in_addr *)h->h_addr)));
    return EXIT_SUCCESS;
}
在使用 gethostbyname() 的时候,你不能用perror() 打印错误信息 (因为 errno 没有使用),你应该调用 herror()。
gethostbyname()返回的 struct hostent 数据。

最后

以上就是会撒娇溪流为你收集整理的struct hostent结构体的全部内容,希望文章能够帮你解决struct hostent结构体所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部