summaryrefslogtreecommitdiff
path: root/bfdd/subdir.am
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2019-10-17 17:11:17 -0300
committerRenato Westphal <renato@opensourcerouting.org>2019-10-30 10:32:51 -0300
commit6c57402944e642b9dab888f8f8ab15675c234bf0 (patch)
tree5cbe08826a8e96de0228fc6386256c6cc8b93d24 /bfdd/subdir.am
parentca4739362988cc1591bf977dd9db0b911ed4f158 (diff)
bfdd: split northbound callbacks into multiple files
Rearrange the bfdd northbound callbacks as following: * bfd_nb.h: prototypes of all northbound callbacks. * bfd_nb.c: definition of all northbound callbacks and their associated YANG data paths. * bfd_nb_config.c: implementation of YANG configuration nodes. * bfd_nb_state.c: implementation of YANG state nodes. This should help to keep to code more organized and easier to maintain. No behavior changes intended. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'bfdd/subdir.am')
-rw-r--r--bfdd/subdir.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/bfdd/subdir.am b/bfdd/subdir.am
index 5e3c3d4765..ed1d3962bf 100644
--- a/bfdd/subdir.am
+++ b/bfdd/subdir.am
@@ -13,7 +13,9 @@ endif
bfdd_libbfd_a_SOURCES = \
bfdd/bfd.c \
- bfdd/bfdd_northbound.c \
+ bfdd/bfdd_nb.c \
+ bfdd/bfdd_nb_config.c \
+ bfdd/bfdd_nb_state.c \
bfdd/bfdd_vty.c \
bfdd/bfdd_cli.c \
bfdd/bfd_packet.c \
@@ -32,6 +34,7 @@ bfdd/bfdd_cli.$(OBJEXT): bfdd/bfdd_cli_clippy.c
noinst_HEADERS += \
bfdd/bfdctl.h \
+ bfdd/bfdd_nb.h \
bfdd/bfd.h \
# end