zoukankan      html  css  js  c++  java
  • 域名解析2则

    下面是2则域名解析的例子

    void CView::HostNameToIP(CString strhostName)  //域名解析为IP地址
    {
     char pURL[]="http://www.163.com/";  
     struct hostent *hp;
     int k;
     char **p;
     hp = gethostbyname(pURL);
     if(hp==NULL) {return; }
     for (p = hp->h_addr_list; *p ; p++) //循环显示所有IP
     {
      char *sIP;
      sIP = inet_ntoa(*(struct in_addr*)*p);
      CString strIP = sIP;
     }
    }

    //域名解析出ip
    //如果想获取本机ip,则把name置null
    lpctstr jsocket::getipstr(char * name)
    {
     char szhostname[256];

     if (!name)
     {
      if (gethostname(szhostname, sizeof(szhostname))==0)
       name = szhostname;
      else
       return 0;
     }

     hostent *he;
     if ((he = gethostbyname(name)) == null)
     {
      // if failed, try using gethostbyaddr instead

      unsigned long ip = inet_addr(name);
     
      if (ip == inaddr_none)
       return null;

      if ((he = gethostbyaddr((char *)&ip,sizeof(ip),af_inet)) == null)
       return null;
     }
     return inet_ntoa (*(struct in_addr *)he->h_addr_list[0]);
    }


     

  • 相关阅读:
    第九章 表单效验
    第八章 使用jQuery操作DOM
    第七章 jQuery中的事件与动画
    CDQZ Day2
    HDU 3783
    CDQZ Day1
    BZOJ 2935/ Poi 1999 原始生物
    Luogu P1801 黑匣子_NOI导刊2010提高(06)
    Intelligent Poetry
    Great Expectations
  • 原文地址:https://www.cnblogs.com/huhu0013/p/1894090.html
Copyright © 2011-2022 走看看