gpt4 book ai didi

c - in_addr 随机结果

转载 作者:太空宇宙 更新时间:2023-11-04 07:35:56 25 4
gpt4 key购买 nike

我正在使用 pcap 库,我正在 try catch 源和目标 IP 地址,但它似乎给我完全随机的结果:

这是我的结构:

struct sniff_ip {
u_char ip_vhl;
u_char ip_tos;
u_short ip_len;
u_short ip_id;
u_short ip_off;
u_char ip_ttl;
u_char ip_p;
u_short ip_sum;
struct in_addr ip_src, ip_dst;
};

这里是使用该结构的相关代码:

void print_payload(u_char *arg, const struct pcap_pkthdr *pkthdr, const u_char *packet)
{
const struct sniff_ip *ip;
int i=0;
static int count=0;

ip = (struct sniff_ip*)(packet + SIZE_ETHERNET);
printf("Source [%s] - Destination [%s]\n", inet_ntoa(ip->ip_src), inet_ntoa(ip->ip_dst));
printf("Payload:\n");
for(i=0; i<pkthdr->len; i++)
{
if(isprint(packet[i]))
printf("%c", packet[i]);
else
printf(".", packet[i]);
if((i%16 == 0 && i != 0) || ( i== pkthdr->len-1))
printf("\n");
}
}

输出是:

Source [207.117.127.0]  - Destination [207.117.127.0]
Payload:
................E
..<m4@.@..u.....
.......Q@1......
....0....@......
1\.........
Source [60.190.127.0] - Destination [60.190.127.0]
Payload:
................E
..(..@.@.<......
...........Q@1.P
...wN..

IP 地址似乎完全是随机的,不是我的。预期的输出是显示我自己的源 IP 和目标 IP,因为我正在通过连接到自己来测试它。我在端口 23 上运行它以避免任何其他数据干扰。

编辑:我让它工作了,出于某种原因我必须远程登录到“eth0”而不是“localhost”才能工作。然而,一旦我将端口更改为更有用的东西,比如端口 80,它就可以正常工作。我不确定为什么端口 23 不同,但是哦,好吧。

最佳答案

inet_ntoa 返回指向其内部缓冲区的指针,因此您不太可能在对 printf 的一次调用中使用两个 inet_ntoa 并希望不同的结果。

关于c - in_addr 随机结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9032937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com