我正在使用套接字从snort数据包接收警报信息。 我使用readme-unsock文件作为基础。我无法从数据包中提取IP地址。我从数据包中得到了错误的数据结构。有没有办法改变这个? (道歉我是新的)
case IPPROTO_TCP:
inet_ntoa (p->iph->ip_dst);
答案 0 :(得分:0)
inet_ntoa()已被删除 - https://beej.us/guide/bgnet/output/html/multipage/inet_ntoaman.html
使用 inet_ntop()代替 - http://man7.org/linux/man-pages/man3/inet_ntop.3.html