根据计算机名获取该计算机的所有IP

1. 工程中添加命令行参数


2. 代码

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

//socket编程

#include "Winsock2.h"
#pragma comment(lib, "Ws2_32.lib")  

 
#include "ws2tcpip.h"   // 注意位置

int main(int argc, char **argv)
{
//调用任何socket函数前必须调用WSAStartup (it initiates use of WS2_32.DLL by a process)
WSADATA wsaData;
if (WSAStartup(MAKEWORD(2,2),&wsaData) != 0){ 
fprintf(stderr,"WSAStartup failed: %d\n",GetLastError()); 
ExitProcess(-1); 


if (argc != 2) {
fprintf(stderr, "Usage: %s hostname\n",
argv[1]);
exit(1);   
}

struct addrinfo *answer, hint, *curr;
memset(&hint,0, sizeof(hint));
hint.ai_family = AF_INET;
hint.ai_socktype = SOCK_STREAM;
int ret = getaddrinfo(argv[1], NULL, &hint, &answer);
if (ret != 0) {
fprintf(stderr,"getaddrinfo: %s\n",
gai_strerror(ret));
exit(1);
}
char * dest_ip;
for (curr = answer; curr != NULL; curr = curr->ai_next) {

 dest_ip = inet_ntoa((((struct sockaddr_in *)(curr->ai_addr))->sin_addr));
 fprintf(stdout,"ip: %s\n",dest_ip);
}
freeaddrinfo(answer);

WSACleanup();
system("pause");
exit(0);
}

结果:


添加多个IP的方法:



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值