rt

解决方案 »

  1.   

    函数 inet_ntoa(....);
    你可以看看具体怎么用。
      

  2.   

    inet_ntoa
    The inet_ntoa function converts an (Ipv4) Internet network address into a string in Internet standard dotted format.char FAR * inet_ntoa(
      struct   in_addr in  
    );
    Parameters
    in 
    [in] Structure that represents an Internet host address. 
    Return Values
    If no error occurs, inet_ntoa returns a character pointer to a static buffer containing the text address in standard ".'' notation. Otherwise, it returns NULL. Res
    The inet_ntoa function takes an Internet address structure specified by the in parameter and returns an ASCII string representing the address in ".'' (dot) notation as in "a.b.c.d.'' The string returned by inet_ntoa resides in memory that is allocated by Windows Sockets. The application should not make any assumptions about the way in which the memory is allocated. The data is guaranteed to be valid until the next Windows Sockets function call within the same thread—but no longer. Therefore, the data should be copied before another Windows Sockets call is made.Requirements 
      Windows NT/2000/XP: Included in Windows NT 3.1 and later.
      Windows 95/98/Me: Included in Windows 95 and later.
      Header: Declared in Winsock2.h.
      Library: Use Ws2_32.lib.
      

  3.   

    char sHostName[128];
    gethostname(sHstName,128);
    struct hostent * pHost;
    pHost = gethostbyname(sHstName);
    for(i=0;pHost!=NULL&&pHost->h_addr_list[i]!=NULL;i++)
    {
     LPCSTR  ipStr =inet_ntoa(*(struct in_addr *)pHost.h_addr_list[i];
     m_ipAddr=AddString(ipStr);
    }