summaryrefslogtreecommitdiff
path: root/ripngd/ripng_cli.c
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2019-10-17 16:03:09 -0300
committerRenato Westphal <renato@opensourcerouting.org>2019-10-29 21:49:14 -0300
commitca4739362988cc1591bf977dd9db0b911ed4f158 (patch)
treea747e08b6a656501591bc6d64c75aee7a248829b /ripngd/ripng_cli.c
parentf80ec39e52e3932aa75e836cc741677f5e5cd0fb (diff)
ripngd: split northbound callbacks into multiple files
Rearrange the ripngd northbound callbacks as following: * ripng_nb.h: prototypes of all northbound callbacks. * ripng_nb.c: definition of all northbound callbacks and their associated YANG data paths. * ripng_nb_config.c: implementation of YANG configuration nodes. * ripng_nb_state.c: implementation of YANG state nodes. * ripng_nb_rpcs.c: implementation of YANG RPCs. 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 'ripngd/ripng_cli.c')
-rw-r--r--ripngd/ripng_cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_cli.c b/ripngd/ripng_cli.c
index e95c0e95d6..2d9930e357 100644
--- a/ripngd/ripng_cli.c
+++ b/ripngd/ripng_cli.c
@@ -29,7 +29,7 @@
#include "libfrr.h"
#include "ripngd/ripngd.h"
-#include "ripngd/ripng_cli.h"
+#include "ripngd/ripng_nb.h"
#ifndef VTYSH_EXTRACT_PL
#include "ripngd/ripng_cli_clippy.c"
#endif