gethostbyname获取IP地址

#include <afxsock.h>
int GetIPAddr(LPCSTR hostname)
{
	int nAdapter = 0;   //适配器数目
	if(AfxSocketInit())
	{ 
		HOSTENT *pHostEnt = gethostbyname(hostname);
		
		if(pHostEnt)
		{
			if(pHostEnt->h_addrtype == AF_INET)
			{
				TRACE("[%s] Official name= [%s]\n", hostname, pHostEnt->h_name);
				
				while ( pHostEnt->h_addr_list[nAdapter] )
				{
					in_addr *pAddr = (in_addr*)pHostEnt->h_addr_list[nAdapter];
					// pHostEnt->h_addr_list[nAdapter] -the current address in host order
					TRACE("IP(%d):%s\n",  nAdapter+1, inet_ntoa(*pAddr));
					nAdapter++;
				}
			}
		}
		else
		{
			int iErr = WSAGetLastError();
			ASSERT(FALSE);
		}    
	}
	return nAdapter;
}

BOOL GetHostByAddr(LPCSTR lpszIP)
{
  if(AfxSocketInit())
  {
    unsigned long cPeer = inet_addr(lpszIP);
    HOSTENT *pHostEnt = gethostbyaddr((char*)&cPeer, 4, AF_INET);
    if(pHostEnt)
    {
      TRACE("IP [%s] host name = [%s]\n", lpszIP, pHostEnt->h_name);

      return TRUE;
    }
    else
    {
      int iErr = WSAGetLastError();
      ASSERT(FALSE);
    } 
  }
  return FALSE;
}

//测试代码
GetIPAddr( "www.sina.com.cn" );
GetHostByAddr( "192.168.0.91" );

//输出
[www.sina.com.cn] Official name= [auriga.sina.com.cn]
IP(1):61.172.201.194
IP(2):61.172.201.195

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值