通过调用gethostbyname 系统函数进行解析
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30void GetHostNamebyIp(char* hostName) { if(NULL == hostName) { return; } int WSA_return = 0; WSADATA WSAData; HOSTENT *host_entry; char szIP[1024] = {0}; AfxMessageBox(hostName); WSA_return=WSAStartup(0x0202,&WSAData); if(0 == WSA_return) { host_entry = gethostbyname(hostName); if(0 != host_entry) { char** ipAddress = host_entry->h_addr_list; for(; *ipAddress != NULL; ipAddress++) { strcpy(szIP,inet_ntoa(*(LPIN_ADDR)*(ipAddress))); WriteIPFile("ip.txt",hostName ,szIP); } } } }
将解析出来的ip地址写入到文件中
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44//写文件,第一个参数文件名,第二个参数hostName,第三个参数文件内容 void WriteIPFile(char* FileName, char* hostName, char* text) { HANDLE hFILE=CreateFile(FileName,GENERIC_WRITE,FILE_SHARE_READ,NULL,OPEN_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL); if(hFILE==INVALID_HANDLE_VALUE) { //文件创建失败 return; } if(SetFilePointer(hFILE,0,NULL,FILE_END)==-1) { printf("SetFilePointer errorn"); return ; } DWORD dwhostWrite; if(!WriteFile(hFILE,hostName,strlen(hostName),&dwhostWrite,NULL)) { printf("WriteFile errorn"); return ; } if(!WriteFile(hFILE,"rn",2,&dwhostWrite,NULL)) { printf("WriteFile errorn"); return ; } DWORD dwWrite; if(!WriteFile(hFILE,text,strlen(text),&dwWrite,NULL)) { printf("WriteFile errorn"); return ; } if(!WriteFile(hFILE,"rn",2,&dwWrite,NULL)) { printf("WriteFile errorn"); return ; } CloseHandle(hFILE); }
到此这篇关于VC实现将网址解析出所有ip地址的文章就介绍到这了,更多相关vc实现网址解析ip地址内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!
最后
以上就是兴奋白昼最近收集整理的关于VC实现将网址解析出所有ip地址的实例代码的全部内容,更多相关VC实现将网址解析出所有ip地址内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复