https://jxself.org/git/linux-libre.git
Raw File
Tip revision: beb7c71276ee762e3f505bb04f35307930f0ecab authored by Jason Self on 25 June 2014, 08:42:11 UTC
Linux-libre 3.12.23-gnu
Tip revision: beb7c71
flow_keys.h
#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];
	};
	u16 thoff;
	u8 ip_proto;
};

extern bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow);
#endif
back to top