3 * Generic internet FLOW.
10 #include <linux/in6.h>
11 #include <asm/atomic.h>
27 struct in6_addr daddr
;
28 struct in6_addr saddr
;
40 #define fld_dst nl_u.dn_u.daddr
41 #define fld_src nl_u.dn_u.saddr
42 #define fld_fwmark nl_u.dn_u.fwmark
43 #define fld_scope nl_u.dn_u.scope
44 #define fl6_dst nl_u.ip6_u.daddr
45 #define fl6_src nl_u.ip6_u.saddr
46 #define fl6_fwmark nl_u.ip6_u.fwmark
47 #define fl6_flowlabel nl_u.ip6_u.flowlabel
48 #define fl4_dst nl_u.ip4_u.daddr
49 #define fl4_src nl_u.ip4_u.saddr
50 #define fl4_fwmark nl_u.ip4_u.fwmark
51 #define fl4_tos nl_u.ip4_u.tos
52 #define fl4_scope nl_u.ip4_u.scope
56 #define FLOWI_FLAG_MULTIPATHOLDROUTE 0x01
72 __u8 objnamel
; /* Not 16 bits since max val is 16 */
73 __u8 objname
[16]; /* Not zero terminated */
78 #ifdef CONFIG_IPV6_MIP6
84 #define fl_ip_sport uli_u.ports.sport
85 #define fl_ip_dport uli_u.ports.dport
86 #define fl_icmp_type uli_u.icmpt.type
87 #define fl_icmp_code uli_u.icmpt.code
88 #define fl_ipsec_spi uli_u.spi
89 #ifdef CONFIG_IPV6_MIP6
90 #define fl_mh_type uli_u.mht.type
92 __u32 secid
; /* used by xfrm; see secid.txt */
93 } __attribute__((__aligned__(BITS_PER_LONG
/8)));
96 #define FLOW_DIR_OUT 1
97 #define FLOW_DIR_FWD 2
100 typedef void (*flow_resolve_t
)(struct flowi
*key
, u16 family
, u8 dir
,
101 void **objp
, atomic_t
**obj_refp
);
103 extern void *flow_cache_lookup(struct flowi
*key
, u16 family
, u8 dir
,
104 flow_resolve_t resolver
);
105 extern void flow_cache_flush(void);
106 extern atomic_t flow_cache_genid
;