Blame view

kernel/linux-imx6_3.14.28/include/net/flow_keys.h 402 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #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;
  };
  
  bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow);
  __be32 skb_flow_get_ports(const struct sk_buff *skb, int thoff, u8 ip_proto);
  #endif