blob: 093bc80ab4bb3331a49a073ab9ad3f056d5a8179 [file] [log] [blame]
#if LINUX_VERSION_IS_GEQ(3,3,0)
#include_next <net/flow_keys.h>
#else
#ifndef _NET_FLOW_KEYS_H
#define _NET_FLOW_KEYS_H
struct flow_keys {
/* (src,dst) must be grouped, in the same way than in IP header */
__be32 src;
__be32 dst;
union {
__be32 ports;
__be16 port16[2];
};
u8 ip_proto;
};
extern bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow);
#endif
#endif