您现在的位置是:网站首页 > 语言基础 > MFC获取本机IP

简介本文介绍一个C++代码片段:MFC获取本机IP,感兴趣的朋友可以参考一下。

代码

WSADATA wsaData;
WORDsockVersion = MAKEWORD(2, 2);
WSAStartup(sockVersion,&wsaData);

charhost_name[225];
gethostname(host_name,sizeof(host_name));
structhostent *phe = gethostbyname(host_name);

structin_addr addr;
memcpy(&addr,phe->h_addr_list[0], sizeof(struct in_addr));
char*ipAddress = inet_ntoa(addr);
WSACleanup();

CStringmyip;
myip.Format("%s",ipAddress);
AfxMessageBox(myip);


更多为你推荐