发布网友 发布时间:2022-04-26 08:35
共1个回答
热心网友 时间:2022-06-25 21:36
#include #include #pragma comment(lib,"ws2_32.lib") // 静态库 void findIP(char *ip, int size) { WORD v = MAKEWORD(1, 1); WSADATA wsaData; WSAStartup(v, &wsaData); // 加载套接字库 struct hostent *phostinfo = gethostbyname(""); c...