diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-08-01 00:53:22 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-08-01 00:53:22 +0200 |
commit | da8644d7d99a0f693037d244f456164568abc68c (patch) | |
tree | c4ead657616263981f7fcbbb98424eb842343b5f /nest/protocol.h | |
parent | d72d3891bf262b28cd4d03fd72e88bf37fef112a (diff) |
Nest: VRF of protocol can be explicitly specified as 'default'
Protocol can have specified VRF, in such case it is restricted to a set
of ifaces associated with the VRF, otherwise it can use all interfaces.
The patch allows to specify VRF as 'default', in which case it is
restricted to a set of iface not associated with any VRF.
Diffstat (limited to 'nest/protocol.h')
-rw-r--r-- | nest/protocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/protocol.h b/nest/protocol.h index cc1dd5ca..02fd8d96 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -93,6 +93,7 @@ struct proto_config { int class; /* SYM_PROTO or SYM_TEMPLATE */ u32 debug, mrtdump; /* Debugging bitfields, both use D_* constants */ unsigned preference, disabled; /* Generic parameters */ + int vrf_set; /* Related VRF instance (below) is defined */ int in_keep_filtered; /* Routes rejected in import filter are kept */ u32 router_id; /* Protocol specific router ID */ struct iface *vrf; /* Related VRF instance, NULL if global */ @@ -149,6 +150,7 @@ struct proto { unsigned preference; /* Default route preference */ byte accept_ra_types; /* Which types of route announcements are accepted (RA_OPTIMAL or RA_ANY) */ byte disabled; /* Manually disabled */ + byte vrf_set; /* Related VRF instance (above) is defined */ byte proto_state; /* Protocol state machine (PS_*, see below) */ byte core_state; /* Core state machine (FS_*, see below) */ byte export_state; /* Route export state (ES_*, see below) */ |