diff options
author | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2020-03-27 14:39:51 +0100 |
---|---|---|
committer | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2020-08-05 15:46:12 +0200 |
commit | 185fb14a4138c0cd2ce98711d31205c657893c2f (patch) | |
tree | e153e3099574dca6c39f9838e63d7c157bdaa89c /bgpd/subdir.am | |
parent | evpn-netns: Revert PR5077, has been re-worked post-refactor (diff) | |
download | frr-185fb14a4138c0cd2ce98711d31205c657893c2f.tar.xz frr-185fb14a4138c0cd2ce98711d31205c657893c2f.zip |
bgpd: pull the multihoming code out to a separate file
Re-org only; no other code changes. This is being done to make maintanence
of MH functionality (which will have more code added to it) easy.
The code moved here was originally committed via -
'commit 50f74cf13105 ("*: support for evpn type-4 route")'
Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Diffstat (limited to 'bgpd/subdir.am')
-rw-r--r-- | bgpd/subdir.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/subdir.am b/bgpd/subdir.am index 6b5c0fe71..a5393e25a 100644 --- a/bgpd/subdir.am +++ b/bgpd/subdir.am @@ -15,6 +15,7 @@ vtysh_scan += \ bgpd/bgp_bfd.c \ bgpd/bgp_debug.c \ bgpd/bgp_dump.c \ + bgpd/bgp_evpn_mh.c \ bgpd/bgp_evpn_vty.c \ bgpd/bgp_filter.c \ bgpd/bgp_mplsvpn.c \ @@ -65,6 +66,7 @@ bgpd_libbgp_a_SOURCES = \ bgpd/bgp_encap_tlv.c \ bgpd/bgp_errors.c \ bgpd/bgp_evpn.c \ + bgpd/bgp_evpn_mh.c \ bgpd/bgp_evpn_vty.c \ bgpd/bgp_filter.c \ bgpd/bgp_flowspec.c \ @@ -139,6 +141,7 @@ noinst_HEADERS += \ bgpd/bgp_encap_types.h \ bgpd/bgp_errors.h \ bgpd/bgp_evpn.h \ + bgpd/bgp_evpn_mh.h \ bgpd/bgp_evpn_private.h \ bgpd/bgp_evpn_vty.h \ bgpd/bgp_filter.h \ |