MFC怎么样用函数获得本机的IP地址?

MFC怎么样用函数获得本机的IP地址?
2024-12-17 06:44:22
推荐回答(1个)
回答1:

char name[128];
hostent* pHost;
gethostname(name, 128);//获得主机名
pHost = gethostbyname(name);//获得主机结构
本地IP = inet_ntoa(*((in_addr *)pHost->h_addr)