diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-24 15:08:03 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-24 15:08:03 +0200 |
commit | 18f70a6229f586d5e4f387075be42d7a1ef5d269 (patch) | |
tree | aa4f99f5eb0dbb62e36f820dea5e53b7522fd1b4 /proto | |
parent | 048c2f0e8cc1451b1fa48e915e0bb5e124aa9d26 (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 'proto')
-rw-r--r-- | proto/bfd/bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bfd/bfd.c b/proto/bfd/bfd.c index 151e0e1d..93073070 100644 --- a/proto/bfd/bfd.c +++ b/proto/bfd/bfd.c @@ -624,7 +624,7 @@ bfd_request_notify(struct bfd_request *req, u8 state, u8 diag) static int bfd_add_request(struct bfd_proto *p, struct bfd_request *req) { - if (p->p.vrf && (p->p.vrf != req->vrf)) + if (p->p.vrf_set && (p->p.vrf != req->vrf)) return 0; struct bfd_session *s = bfd_find_session_by_addr(p, req->addr); |