用VC++编程实现获取本机IP和计算机名,使用socket。要求源代码和可执行程序。 急!急!急!
展开全部
#include "WinSock2.h"
#include <iostream>
using namespace std;
//使用Winsock库,如果你使用其他socket库,可以包含进来
#pragma comment(lib, "Ws2_32.lib")
int main(int argc, char* argv[])
{
char *ptrip=NULL;
char name[32]="";
WSADATA wsaData;
WORD sockVersion = MAKEWORD(2, 0);
//初始化Winsock
if (0 != WSAStartup(sockVersion, &wsaData))
{
cout << "Failed to retrive socket version."<< endl;
return -1;
}
PHOSTENT hostinfo;
if(gethostname (name, sizeof(name)) == 0)
{
//如果成功 将本地主机名存放入name缓冲区
if((hostinfo = gethostbyname(name)) != NULL)
{
//获取主机IP
ptrip = inet_ntoa (*(struct in_addr *)*hostinfo->h_addr_list);
}
}
cout<<"IP:"<<ptrip<<" Name:"<<name<<endl;
return 0;
}
#include <iostream>
using namespace std;
//使用Winsock库,如果你使用其他socket库,可以包含进来
#pragma comment(lib, "Ws2_32.lib")
int main(int argc, char* argv[])
{
char *ptrip=NULL;
char name[32]="";
WSADATA wsaData;
WORD sockVersion = MAKEWORD(2, 0);
//初始化Winsock
if (0 != WSAStartup(sockVersion, &wsaData))
{
cout << "Failed to retrive socket version."<< endl;
return -1;
}
PHOSTENT hostinfo;
if(gethostname (name, sizeof(name)) == 0)
{
//如果成功 将本地主机名存放入name缓冲区
if((hostinfo = gethostbyname(name)) != NULL)
{
//获取主机IP
ptrip = inet_ntoa (*(struct in_addr *)*hostinfo->h_addr_list);
}
}
cout<<"IP:"<<ptrip<<" Name:"<<name<<endl;
return 0;
}
Storm代理
2023-08-29 广告
2023-08-29 广告
StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,IP...
点击进入详情页
本回答由Storm代理提供
2011-03-24
展开全部
l iceIpCheck 查询IP简单信息小工具
http://dl.icese.net/src.php?f=iceIpCheck.src.rar
http://dl.icese.net/src.php?f=iceIpCheck.src.rar
追问
要求控制台程序
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询