]> git.puffer.fish Git - mirror/frr.git/commitdiff
bgpd: fix 'neighbor X prefix-list Y in' SAFI VPN 8111/head
authorEmanuele Di Pascale <emanuele@voltanet.io>
Fri, 19 Feb 2021 12:26:04 +0000 (13:26 +0100)
committerEmanuele Di Pascale <emanuele@voltanet.io>
Fri, 19 Feb 2021 12:30:45 +0000 (13:30 +0100)
this particular callback had not been implemented in the northbound
conversion, so the command had no effect.

Signed-off-by: Emanuele Di Pascale <emanuele@voltanet.io>
bgpd/bgp_nb_config.c

index f2443bd164e129f29588bce872b54a60001d9963..a3f58db88fabccf6065a90e0bb568142a8c3e011 100644 (file)
@@ -22977,8 +22977,9 @@ int bgp_neighbors_neighbor_afi_safis_afi_safi_l3vpn_ipv4_unicast_filter_config_p
        case NB_EV_VALIDATE:
        case NB_EV_PREPARE:
        case NB_EV_ABORT:
+               return NB_OK;
        case NB_EV_APPLY:
-               /* TODO: implement me. */
+               bgp_neighbor_afi_safi_plist_modify(args, FILTER_IN);
                break;
        }