Windows Socket域名解析

Posted mayfly-nymph

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows Socket域名解析相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <stdlib.h>
#include <WinSock2.h>
#pragma comment(lib, "ws2_32.lib")

int main(){
    WSADATA wsaData;
    WSAStartup( MAKEWORD(2, 2), &wsaData);

    struct hostent *host = gethostbyname("www.baidu.com");
    if(!host){
        puts("Get IP address error!");
        system("pause");
        exit(0);
    }

    //别名
    for(int i=0; host->h_aliases[i]; i++){
        printf("Aliases %d: %s
", i+1, host->h_aliases[i]);
    }

    //地址类型
    printf("Address type: %s
", (host->h_addrtype==AF_INET) ? "AF_INET": "AF_INET6");

    //IP地址
    for(int i=0; host->h_addr_list[i]; i++){
        printf("IP addr %d: %s
", i+1, inet_ntoa( *(struct in_addr*)host->h_addr_list[i] ) );
    }

    system("pause");
    return 0;
}

 

以上是关于Windows Socket域名解析的主要内容,如果未能解决你的问题,请参考以下文章

[原]socket通信实现域名解析

二级域名原理以及程序代码

docker 部署 coredns(内部域名解析)

docker 部署 coredns(内部域名解析)

VC++调用gethostbyname实现域名解析(附源码)

Python实现将网站域名解析为ip地址