flow_keys.h 402 字节
Newer Older
E
Eric Dumazet 已提交
1 2 3 4
#ifndef _NET_FLOW_KEYS_H
#define _NET_FLOW_KEYS_H

struct flow_keys {
5
	/* (src,dst) must be grouped, in the same way than in IP header */
E
Eric Dumazet 已提交
6 7 8 9 10 11
	__be32 src;
	__be32 dst;
	union {
		__be32 ports;
		__be16 port16[2];
	};
12
	u16 thoff;
E
Eric Dumazet 已提交
13 14 15
	u8 ip_proto;
};

16
bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow);
17
__be32 skb_flow_get_ports(const struct sk_buff *skb, int thoff, u8 ip_proto);
E
Eric Dumazet 已提交
18
#endif