从原始套接字处理 Ip 标头时取消引用指针错误

发布于 2025-01-02 20:44:06 字数 312 浏览 2 评论 0原文

void parse_message(char *buffer, int len) {

struct iphrd *ip_header = (struct iphrd *)buffer;

int recv_hopcount = (unsigned int)(ip_header->ttl);

//hops[recv_hopcount]++;

}

错误:取消引用指向不完整类型的指针

我已在头文件中包含 netinet/ip.h 。上面的代码是为了访问IP头中包含的ttl值而编写的。使用原始套接字。

void parse_message(char *buffer, int len)
{

struct iphrd *ip_header = (struct iphrd *)buffer;

int recv_hopcount = (unsigned int)(ip_header->ttl);

//hops[recv_hopcount]++;

}

error: dereferencing pointer to incomplete type

I have include netinet/ip.h in the header file. The above code is written to access the ttl value contained in the IP header. Used raw sockets.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪眸﹌ 2025-01-09 20:44:06

看起来 iphrd 结构尚未在任何地方定义。是 iphdr 的拼写错误吗?您的问题看起来没有名为 iphrd 的结构......

It looks like the iphrd struct has not been defined anywhere. Is it a typo of iphdr? Your issue looks like there is no struct called iphrd...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文