diff options
Diffstat (limited to 'include/linux/fib_rules.h')
-rw-r--r-- | include/linux/fib_rules.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/linux/fib_rules.h b/include/linux/fib_rules.h index 8270aac2aa5d..87b606b63f1e 100644 --- a/include/linux/fib_rules.h +++ b/include/linux/fib_rules.h | |||
@@ -5,8 +5,13 @@ | |||
5 | #include <linux/rtnetlink.h> | 5 | #include <linux/rtnetlink.h> |
6 | 6 | ||
7 | /* rule is permanent, and cannot be deleted */ | 7 | /* rule is permanent, and cannot be deleted */ |
8 | #define FIB_RULE_PERMANENT 1 | 8 | #define FIB_RULE_PERMANENT 0x00000001 |
9 | #define FIB_RULE_INVERT 2 | 9 | #define FIB_RULE_INVERT 0x00000002 |
10 | #define FIB_RULE_UNRESOLVED 0x00000004 | ||
11 | #define FIB_RULE_DEV_DETACHED 0x00000008 | ||
12 | |||
13 | /* try to find source address in routing lookups */ | ||
14 | #define FIB_RULE_FIND_SADDR 0x00010000 | ||
10 | 15 | ||
11 | struct fib_rule_hdr | 16 | struct fib_rule_hdr |
12 | { | 17 | { |
@@ -29,7 +34,7 @@ enum | |||
29 | FRA_DST, /* destination address */ | 34 | FRA_DST, /* destination address */ |
30 | FRA_SRC, /* source address */ | 35 | FRA_SRC, /* source address */ |
31 | FRA_IFNAME, /* interface name */ | 36 | FRA_IFNAME, /* interface name */ |
32 | FRA_UNUSED1, | 37 | FRA_GOTO, /* target to jump to (FR_ACT_GOTO) */ |
33 | FRA_UNUSED2, | 38 | FRA_UNUSED2, |
34 | FRA_PRIORITY, /* priority/preference */ | 39 | FRA_PRIORITY, /* priority/preference */ |
35 | FRA_UNUSED3, | 40 | FRA_UNUSED3, |
@@ -51,8 +56,8 @@ enum | |||
51 | { | 56 | { |
52 | FR_ACT_UNSPEC, | 57 | FR_ACT_UNSPEC, |
53 | FR_ACT_TO_TBL, /* Pass to fixed table */ | 58 | FR_ACT_TO_TBL, /* Pass to fixed table */ |
54 | FR_ACT_RES1, | 59 | FR_ACT_GOTO, /* Jump to another rule */ |
55 | FR_ACT_RES2, | 60 | FR_ACT_NOP, /* No operation */ |
56 | FR_ACT_RES3, | 61 | FR_ACT_RES3, |
57 | FR_ACT_RES4, | 62 | FR_ACT_RES4, |
58 | FR_ACT_BLACKHOLE, /* Drop without notification */ | 63 | FR_ACT_BLACKHOLE, /* Drop without notification */ |