Windows c++获取本地ip

int GetLocalIp(vector<string> &vIp)

{

WSADATA wsaData;

int iRet = WSAStartup(((2 << 8) & 0xffff) | (2 & 0xff), &wsaData);

if (iRet != 0) {

std::cerr << "WSAStartup failed: " << iRet << std::endl;

return 1;

}

// 获取本机名

char hostname[256];

int result = gethostname(hostname, sizeof(hostname));

if (result != 0) {

std::cerr << "gethostname failed: " << WSAGetLastError() << std::endl;

WSACleanup();

return 1;

}

// 获取主机信息

struct hostent* phe = gethostbyname(hostname);

if (phe == nullptr) {

std::cerr << "gethostbyname failed: " << WSAGetLastError() << std::endl;

WSACleanup();

return 1;

}

// 遍历所有的IP地址

for (int i = 0; phe->h_addr_list[i] != 0; ++i) {

struct in_addr addr;

memcpy(&addr, phe->h_addr_list[i], sizeof(struct in_addr));

vIp.push_back(inet_ntoa(addr));

std::cout << "Local IP " << i + 1 << ": " << inet_ntoa(addr) << std::endl;

}

WSACleanup();

}

相关推荐
w***744014 小时前
SQL Server2022版详细安装教程(Windows)
windows
jinxinyuuuus16 小时前
GTA 风格 AI 生成器:跨IP融合中的“视觉语义冲突”与风格适配损失
人工智能·网络协议
嵌入式-小王17 小时前
每天掌握一个网络协议----ICMP
网络·网络协议·ping
Awkwardx18 小时前
Linux网络编程—应用层协议HTTP
网络·网络协议·http
4***v21418 小时前
详解 为什么 tcp 会出现 粘包 拆包 问题
网络·tcp/ip·php
蓝牙先生18 小时前
简易TCP C/S通信
c语言·tcp/ip·算法
Running_slave19 小时前
你应该了解的TCP滑窗
前端·网络协议·tcp/ip
IT逆夜21 小时前
实现Yum本地仓库自动同步的完整方案(CentOS 7)
linux·运维·windows
无证驾驶梁嗖嗖21 小时前
无需公网 IP,MongoDB 也能跨环境访问?试试这个实用方案
网络协议·tcp/ip·mongodb
v***598321 小时前
DeepSeek API 调用 - Spring Boot 实现
windows·spring boot·后端