标签: networking kernel network-interface netfilter
据我了解
const struct net_device *in
hook参数描述了数据包通过的网络接口。
是否可以从该结构中获取接口的IPv4地址?
内核版本3.2.0
谢谢
答案 0 :(得分:0)
我找到了我需要的代码here。 我的适配器只有一个IPv4地址,因此我设法通过以下方式获取它:
((in->ip_ptr)->ifa_list)->ifa_address;