[NET] fib_rules: Mark rules detached from the device
[linux-2.6.git] / include / linux / fib_rules.h
blobc151273293e25186655a574af32de7d2faac18e4
1 #ifndef __LINUX_FIB_RULES_H
2 #define __LINUX_FIB_RULES_H
4 #include <linux/types.h>
5 #include <linux/rtnetlink.h>
7 /* rule is permanent, and cannot be deleted */
8 #define FIB_RULE_PERMANENT 1
9 #define FIB_RULE_INVERT 2
10 #define FIB_RULE_UNRESOLVED 4
11 #define FIB_RULE_DEV_DETACHED 8
13 struct fib_rule_hdr
15 __u8 family;
16 __u8 dst_len;
17 __u8 src_len;
18 __u8 tos;
20 __u8 table;
21 __u8 res1; /* reserved */
22 __u8 res2; /* reserved */
23 __u8 action;
25 __u32 flags;
28 enum
30 FRA_UNSPEC,
31 FRA_DST, /* destination address */
32 FRA_SRC, /* source address */
33 FRA_IFNAME, /* interface name */
34 FRA_GOTO, /* target to jump to (FR_ACT_GOTO) */
35 FRA_UNUSED2,
36 FRA_PRIORITY, /* priority/preference */
37 FRA_UNUSED3,
38 FRA_UNUSED4,
39 FRA_UNUSED5,
40 FRA_FWMARK, /* mark */
41 FRA_FLOW, /* flow/class id */
42 FRA_UNUSED6,
43 FRA_UNUSED7,
44 FRA_UNUSED8,
45 FRA_TABLE, /* Extended table id */
46 FRA_FWMASK, /* mask for netfilter mark */
47 __FRA_MAX
50 #define FRA_MAX (__FRA_MAX - 1)
52 enum
54 FR_ACT_UNSPEC,
55 FR_ACT_TO_TBL, /* Pass to fixed table */
56 FR_ACT_GOTO, /* Jump to another rule */
57 FR_ACT_RES2,
58 FR_ACT_RES3,
59 FR_ACT_RES4,
60 FR_ACT_BLACKHOLE, /* Drop without notification */
61 FR_ACT_UNREACHABLE, /* Drop with ENETUNREACH */
62 FR_ACT_PROHIBIT, /* Drop with EACCES */
63 __FR_ACT_MAX,
66 #define FR_ACT_MAX (__FR_ACT_MAX - 1)
68 #endif