diff options
| author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-05-23 16:09:24 -0300 | 
|---|---|---|
| committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-06-22 10:10:56 -0300 | 
| commit | adc26455bff183ce65d475b058045165826d823f (patch) | |
| tree | 82113cf3836bad765a1b331a0fbc315b929e468f /bfdd/subdir.am | |
| parent | 3e4e7405ff2d9373c4e43550fa37c43fd06504d5 (diff) | |
bfdd: migrate session commands to northbound
Lets start using the new BFD yang model and translate the BFD session
configuration commands to use the northbound.
One important change: all sessions will default to use
`VRF_DEFAULT_NAME` (usually "default") when no VRF is configured. All
places which search for BFD sessions must now take this into account.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
Diffstat (limited to 'bfdd/subdir.am')
| -rw-r--r-- | bfdd/subdir.am | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/bfdd/subdir.am b/bfdd/subdir.am index e88b982ec3..353667349f 100644 --- a/bfdd/subdir.am +++ b/bfdd/subdir.am @@ -7,12 +7,15 @@ noinst_LIBRARIES += bfdd/libbfd.a  sbin_PROGRAMS += bfdd/bfdd  dist_examples_DATA += bfdd/bfdd.conf.sample  vtysh_scan += $(top_srcdir)/bfdd/bfdd_vty.c +vtysh_scan += $(top_srcdir)/bfdd/bfdd_cli.c  man8 += $(MANBUILD)/bfdd.8  endif  bfdd_libbfd_a_SOURCES = \  	bfdd/bfd.c \ +	bfdd/bfdd_northbound.c \  	bfdd/bfdd_vty.c \ +	bfdd/bfdd_cli.c \  	bfdd/bfd_packet.c \  	bfdd/config.c \  	bfdd/control.c \ @@ -24,6 +27,9 @@ bfdd_libbfd_a_SOURCES = \  bfdd/bfdd_vty_clippy.c: $(CLIPPY_DEPS)  bfdd/bfdd_vty.$(OBJEXT): bfdd/bfdd_vty_clippy.c +bfdd/bfdd_cli_clippy.c: $(CLIPPY_DEPS) +bfdd/bfdd_cli.$(OBJEXT): bfdd/bfdd_cli_clippy.c +  noinst_HEADERS += \  	bfdd/bfdctl.h \  	bfdd/bfd.h \  | 
