Chinaunix首页 | 论坛 | 博客
  • 博客访问: 705675
  • 博文数量: 214
  • 博客积分: 5015
  • 博客等级: 大校
  • 技术积分: 2285
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-18 17:02
文章分类

全部博文(214)

文章存档

2008年(43)

2007年(171)

我的朋友

分类:

2007-08-08 15:08:30

char hostname[256];
//首先取得机器名称

gethostname(hostname, sizeof(hostname));
//根据名称获得机器IP地址信息,存放在结构体hostent中

LPHOSTENT lphost = gethostbyname(hostname);

//对链表进行访问,取出所有的IP地址

int i=0;
while(lphost->h_addr_list[i] != NULL)
{
    memcpy(&LocalIPList[i][0],inet_ntoa(*(struct in_addr *)lphost->h_addr_list[i]),16);
    i++;
}
---------------------------------------------------------------


void CGetIPDlg::OnQuery()
{
    char szHostName[128];
    char szT[20];

    if( gethostname(szHostName, 128) == 0 )
    {
        // Get host adresses

        m_HostName.SetWindowText(szHostName);
        struct hostent * pHost;
        int i;
        pHost = gethostbyname(szHostName);
        for( i = 0; NULL && pHost->h_addr_list[i]!= NULL; i++ )
        {
            char str[100];
            char addr[20];
            int j;
            LPCSTR psz=inet_ntoa (*(struct in_addr *)pHost->h_addr_list[i]);
            m_IPAddr.AddString(psz);
        }
    }
}

阅读(2541) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~