码迷,mamicode.com
首页 > 编程语言 > 详细

C++:通过gethostbyname函数,根据服务器的域名,获取服务器IP

时间:2017-01-07 01:21:28      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:print   bre   baidu   null   服务器ip   type   string   argv   i++   

  本代码的编译环境为MAC,系统版本为10.11.6:

#include <string.h>
#include <netdb.h>
#include <stdio.h>
#include <arpa/inet.h>
int main(int argc, char *argv[]) {
    char host[] = "www.baidu.com";
    struct  hostent *ht = NULL;
    ht = gethostbyname(host);
    if(ht) {
        printf("type:%s\n", ht->h_addrtype == AF_INET ? "AF_INET" : "AF_INET6");
        printf("length:%d\n",ht->h_length);
        for(int i=0; ;i++) {
            if(ht->h_addr_list[i]!=NULL) {
                printf("IP Address :%s\n",inet_ntoa(*((struct in_addr *)ht->h_addr_list[i])));
            }else{
                break;
            }
        }
        for(int j=0; ;j++) {
            if(ht->h_aliases[j]!=NULL) {
                printf("IP:%s\n",ht->h_aliases[j]);
            }else{
                break;
            }
        }
    }
    return 0;
}

技术分享

  EOF

C++:通过gethostbyname函数,根据服务器的域名,获取服务器IP

标签:print   bre   baidu   null   服务器ip   type   string   argv   i++   

原文地址:http://www.cnblogs.com/diligenceday/p/6252259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!