标题:gethostbyname 和 gethostbyaddr 的适用范围
只看楼主
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
结帖率:79.17%
 问题点数:0 回复次数:0 
gethostbyname 和 gethostbyaddr 的适用范围
今天看别人写的一个 MFC 代码
一会儿  gethostbyname, 一会儿 gethostbyaddr,我想他们必定有什么优点
不知道他们各自什么优点?
具体适用在
int CMyQQDlg::GetIpAddress(const CString &sHostName, CString &sIpAddress)//获得本地IP
{
    struct hostent FAR * lpHostEnt=gethostbyname(sHostName);
    if(lpHostEnt==NULL)
    {
        //产生错误
        sIpAddress=_T("");
        return GetLastError();
    }
    //获取IP
    LPSTR lpAddr=lpHostEnt->h_addr_list[0];
    if(lpAddr)
    {
        struct in_addr inAddr;
        memmove(&inAddr,lpAddr,4);
        //转换为标准格式
        sIpAddress=inet_ntoa(inAddr);
        if(sIpAddress.IsEmpty())
            sIpAddress=_T("没有取得");
    }
    return 0;
}

int CMyQQDlg::GetNamebyAddress(const CString &IpAddress,CString &sYouName)//获得对方计算机名称
{
    unsigned long addr;
    addr=inet_addr(IpAddress);
    struct hostent FAR * lpHostEnt=gethostbyaddr((char *)&addr,4,AF_INET);
    if(lpHostEnt==NULL)
    {
        //产生错误
        sYouName=_T("");

        AfxMessageBox("连接不上");//应该取得其错误
        return -1;
    }
    CString name=lpHostEnt->h_name;
    sYouName=name;
    return 0;
}
搜索更多相关主题的帖子: 范围 lpHostEnt lpAddr amp CString 
2008-05-02 10:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-211976-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.710035 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved