VC 擷取機器的Ip和主機名稱

來源:互聯網
上載者:User

    利用winsock擷取主機名稱和ip地址其實很簡單,主要使用的函數就是gethostname和gethostbyname.

    首先,使用gethostname(char *name,int namelen)擷取主機名稱,name為儲存主機名稱的buf,namelen為制定的buf的長度。然後使用gethostbyname(char* addr)擷取主機ip,該函數的傳回值是hostent指標。hostent結構體如下:

   struct hostent {
  char FAR *       {
showTip(this)
}">h_name;
  char FAR * FAR * {
showTip(this)
}">h_aliases;
  short            {
showTip(this)
}">h_addrtype;
  short            {
showTip(this)
}">h_length;
  char FAR * FAR * {
showTip(this)
}">h_addr_list;
};

通過遍曆h_addr_list擷取主機的ip地址。

 

char *pchhostname=new char[256];<br />gethostname(pchhostname,256);<br />hostent *phost=gethostbyname(pchhostname);<br />int i;<br />CString strIp;<br />for(i=0;phost!=NULL&&phost->h_addr_list[i]!=NULL;i++)<br />{<br /> LPCTSTR psz=inet_ntoa(*(struct in_addr*)phost->h_addr_list[i]);<br /> strIp+=psz;<br />strIp+=".";<br />}<br />this->GetDlgItem(IDC_zhuji)->SetWindowText(pchhostname);<br />this->GetDlgItem(IDC_IP)->SetWindowText(strIp);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.