summaryrefslogtreecommitdiffstats
path: root/ripd/rip_cli.c
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2019-10-17 20:46:54 +0200
committerRenato Westphal <renato@opensourcerouting.org>2019-10-30 01:49:14 +0100
commitf80ec39e52e3932aa75e836cc741677f5e5cd0fb (patch)
tree251a0f0bba5030597cbec5839e6a76918b1d3ec6 /ripd/rip_cli.c
parentisisd: split northbound callbacks into multiple files (diff)
downloadfrr-f80ec39e52e3932aa75e836cc741677f5e5cd0fb.tar.xz
frr-f80ec39e52e3932aa75e836cc741677f5e5cd0fb.zip
ripd: split northbound callbacks into multiple files
Rearrange the ripd northbound callbacks as following: * rip_nb.h: prototypes of all northbound callbacks. * rip_nb.c: definition of all northbound callbacks and their associated YANG data paths. * rip_nb_config.c: implementation of YANG configuration nodes. * rip_nb_state.c: implementation of YANG state nodes. * rip_nb_rpcs.c: implementation of YANG RPCs. * rip_nb_notifications.c: implementation of YANG notifications. 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 'ripd/rip_cli.c')
-rw-r--r--ripd/rip_cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_cli.c b/ripd/rip_cli.c
index 627d3d199..5c26c0cef 100644
--- a/ripd/rip_cli.c
+++ b/ripd/rip_cli.c
@@ -29,7 +29,7 @@
#include "libfrr.h"
#include "ripd/ripd.h"
-#include "ripd/rip_cli.h"
+#include "ripd/rip_nb.h"
#ifndef VTYSH_EXTRACT_PL
#include "ripd/rip_cli_clippy.c"
#endif