在 C++ 中,
如何获取使用 recvfrom 接收到的 UDP 数据包的接收方地址。我知道它应该是我接收数据包的同一主机,但我需要从收到的数据包中提取它,以验证某些内容。我怎样才能做到这一点?
我发现这样做的一种方法是:
int r = getsockopt(receiver_sock, SOL_IP, SO_ORIGINAL_DST, (struct sockaddr *) &sender_addr, (socklen_t *)&addr_len);`
但我得到了错误:
error: ‘SO_ORIGINAL_DST’ was not declared in this scope
我正在使用适当的标题
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include </usr/src/linux-headers-2.6.32-21/include/linux/netfilter_ipv4.h>
#include <arpa/inet.h>
#include <linux/netfilter.h>
使用 netfilter_ipv4 会产生其他错误,例如未声明 INT_MIN。但是,我认为错误是更根本的问题,而不是包含正确的标题。
请帮忙。