diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-09-30 23:18:04 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-10-04 13:12:05 +0200 |
commit | d8130da86bda6244e1f5c06eb9b9033625b781e6 (patch) | |
tree | 419db3b2a127896dfc54251cb5017310c3d86036 /proto/l3vpn/l3vpn.c | |
parent | a7a9df8639c701dd020cf61d19b205230742a17e (diff) |
BGP, L3VPN: Fix MPLS channel reload
When a MPLS channel is reloaded, it should reload all regular MPLS-aware
channels. This causes re-evaluation of routes in FEC map and possibly
reannouncement of MPLS routes.
Diffstat (limited to 'proto/l3vpn/l3vpn.c')
-rw-r--r-- | proto/l3vpn/l3vpn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/l3vpn/l3vpn.c b/proto/l3vpn/l3vpn.c index 38441208..b7f60504 100644 --- a/proto/l3vpn/l3vpn.c +++ b/proto/l3vpn/l3vpn.c @@ -296,7 +296,8 @@ l3vpn_reload_routes(struct channel *C) break; case NET_MPLS: - /* FIXME */ + channel_request_feeding(p->ip4_channel); + channel_request_feeding(p->ip6_channel); break; } } |