通过调用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
30
|
void 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 error\n" );
return ;
}
DWORD dwhostWrite;
if (!WriteFile(hFILE,hostName, strlen (hostName),&dwhostWrite,NULL))
{
printf ( "WriteFile error\n" );
return ;
}
if (!WriteFile(hFILE, "\r\n" ,2,&dwhostWrite,NULL))
{
printf ( "WriteFile error\n" );
return ;
}
DWORD dwWrite;
if (!WriteFile(hFILE,text, strlen (text),&dwWrite,NULL))
{
printf ( "WriteFile error\n" );
return ;
}
if (!WriteFile(hFILE, "\r\n" ,2,&dwWrite,NULL))
{
printf ( "WriteFile error\n" );
return ;
}
CloseHandle(hFILE);
}
|
到此这篇关于VC实现将网址解析出所有ip地址的文章就介绍到这了,更多相关vc实现网址解析ip地址内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/c_kongfei/article/details/115345319