1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

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.
This commit is contained in:
Ondrej Zajicek
2023-09-30 23:18:04 +02:00
parent a7a9df8639
commit d8130da86b
2 changed files with 12 additions and 1 deletions

View File

@@ -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;
}
}