下面是一个代码,我想显示用户输入的地址的IP地址,但是它给了我STATUS_ACCESS_VIOLATION,我不明白它的原因。
编译好。这是它
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
// Link to ws2_32.lib
#include <winsock2.h>
#include <stdio.h>
#include <stdlib.h>
struct protoent *proto=NULL;
int main(int count, char *strings[])
{
int pid;
struct hostent *host;
struct sockaddr_in addr;
if ( count != 3 )
{
printf("usage: %s <addr> < Adressflag = 0 for name and 1 for IP > /n", strings[0] );
exit(0);
}
if ( count == 3 )
{
int flag = atoi(strings[2]);
printf("flag is %d",flag);
if ( flag == 0)
{
pid = getpid();
proto = getprotobyname("ICMP");
host = gethostbyname(strings[1]);
bzero(&addr, sizeof(addr));
addr.sin_family = host->h_addrtype;
addr.sin_port = 0;
addr.sin_addr.s_addr = *(long*)host->h_addr;
//traceroute(&addr);
printf("IP of %s is %s",host->h_name , host-> h_addr);
}
else
{
}
}
return 0;
}
我在cygwin中运行它。是否有人知道这个错误,谁能说出我做错了什么?
答案 0 :(得分:2)
你真的需要前面的*吗?
addr.sin_addr.s_addr = *(long*)host->h_addr
这意味着你要取消引用一些随机地址。
你也不检查主机是否为空。
答案 1 :(得分:0)
addr.sin_addr.s_addr = *(long*)host->h_addr
你不能只是将char*
强制转换为long*
来从字符串中获取数字,而且你可能也不应该取消引用。