diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-19 23:10:54 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-19 23:10:54 +0100 |
commit | 257bfc6392bf8a1c215f0bd6889db4694a405c1d (patch) | |
tree | fcbff13419b976fdb99fa9674b8cc0bfd0421097 /interface-ip.h | |
parent | 655ef783b1d5f72af3acccc87455c365fea4ad42 (diff) |
add a flag to keep track of route metric overrides
Diffstat (limited to 'interface-ip.h')
-rw-r--r-- | interface-ip.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/interface-ip.h b/interface-ip.h index 0ce94df..68bfdf6 100644 --- a/interface-ip.h +++ b/interface-ip.h @@ -11,6 +11,9 @@ enum device_addr_flags { /* externally added address */ DEVADDR_EXTERNAL = (1 << 2), + + /* route overrides the default interface metric */ + DEVROUTE_METRIC = (1 << 3) }; union if_addr { |