• socket学习笔记——获取域名与IP(linux)


    gethostbyname.c

     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 #include <unistd.h>
     4 #include <arpa/inet.h>
     5 #include <arpa/inet.h>
     6 #include <netdb.h>
     7 
     8 int main(int argc,char* argv[])
     9 {
    10     int i;
    11     struct hostent* host;
    12     if(argc != 2)
    13     {
    14         printf("usage: %s <addr>
    ",argv[0]);
    15         exit(1);
    16     }
    17 
    18     host = gethostbyname(argv[1]);
    19     if(!host)
    20     {
    21         printf("get host error......
    ");
    22         exit(1);
    23     }
    24     printf("official name:%s
    ",host->h_name);
    25     for(i = 0;host->h_aliases[i];i++)
    26         printf("access %d; %s
    ",i+1,host->h_aliases[i]);
    27     printf("address type:%s 
    ",(host->h_addrtype==AF_INET)?"AF_INET":"AFINET6");
    28     for(i = 0;host->h_addr_list[i];i++)
    29         printf("IP addr %d: %s 
    ",i+1,inet_ntoa(*(struct in_addr*)host->h_addr_list[i]));
    30     return 0;
    31 }

    gethostbyaddr.c

     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 #include <string.h>
     4 #include <unistd.h>
     5 #include <arpa/inet.h>
     6 #include <netdb.h>
     7 
     8 int main(int argc,char* argv[])
     9 {
    10     int i;
    11     struct hostent* host;
    12     struct sockaddr_in addr;
    13     if(argc != 2)
    14     {
    15         printf("usage :%s <ip>
    ",argv[0]);
    16         exit(1);
    17     }
    18 
    19     memset(&addr,0,sizeof(addr));
    20     addr.sin_addr.s_addr = inet_addr(argv[1]);
    21     host = gethostbyaddr((char*)&addr.sin_addr,4,AF_INET);
    22     if(!host)
    23     {
    24         printf("get host error
    ");
    25         exit(1);
    26     }
    27 
    28     printf("official name;%s 
    ",host->h_name);
    29     for(i = 0;host->h_aliases[i];i++)
    30         printf("aliases %d:%s
    ",i,host->h_aliases[i]);
    31     printf("address type:%s
    ",(host->h_addrtype==AF_INET)?"AF_INET":"AF_INET6");
    32     for(i = 0;host->h_addr_list[i];i++)
    33         printf("IP addr %d;%s
    ",i+1,inet_ntoa(*(struct in_addr*)host->h_addr_list[i]));
    34     return 0;
    35 }
  • 相关阅读:
    初识现代软件工程——构建之法
    个人作业3——个人总结(Alpha阶段)
    结对编程2
    个人作业2——英语学习APP案例分析
    结对作业1
    java四则运算
    个人附加作业
    个人作业3——个人总结(Alpha阶段)
    结对编程2——单元测试
    个人作业2——英语学习APP案例分析
  • 原文地址:https://www.cnblogs.com/boyiliushui/p/4736133.html
Copyright © 2020-2023  润新知