I know the remote machine name, this machine is on the same network.
If I ping that machine from command prompt, I get the IP information as well.
C:\Users\anikumar>ping neemqx01g
Pinging neemqx01g.efi.internal [10.210.98.194] with 32 bytes of data:
Reply from 10.210.98.194: bytes=32 time=2ms TTL=128
Reply from 10.210.98.194: bytes=32 time<1ms TTL=128
Reply from 10.210.98.194: bytes=32 time<1ms TTL=128
Reply from 10.210.98.194: bytes=32 time<1ms TTL=128
Ping statistics for 10.210.98.194:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 2ms, Average = 0ms
How can I achieve programmatically in wxWidgets or boost to get the IP address?
Answer:
C function:
const wxString GetIPbyName(const wxString& name)
{
struct hostent* pHostInfo;
pHostInfo = gethostbyname(name.c_str());
in_addr * address = (in_addr *)pHostInfo->h_addr;
std::string ip_address = inet_ntoa(*address);
return ip_address;
}
wxWidgets:
wxIPV4address ipv4;
ipv4.Hostname(m_currentServer);
wxString m_currentServer = ipv4.IPAddress();
I am not how above will behave in case of multiple active network cards.