从原始套接字处理 Ip 标头时取消引用指针错误
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 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...