diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2019-10-17 20:33:53 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2019-10-30 01:49:14 +0100 |
commit | 2a1c520e9f105b1a1bbdb89d59ad3c3953f46f49 (patch) | |
tree | 23ebce15b36d13f0164d1961aa3cc8df452bffc6 /isisd/isis_pdu.c | |
parent | Merge pull request #5197 from SumitAgarwal123/BFD_ADMIN_DOWN (diff) | |
download | frr-2a1c520e9f105b1a1bbdb89d59ad3c3953f46f49.tar.xz frr-2a1c520e9f105b1a1bbdb89d59ad3c3953f46f49.zip |
isisd: split northbound callbacks into multiple files
Rearrange the isisd northbound callbacks as following:
* isis_nb.h: prototypes of all northbound callbacks.
* isis_nb.c: definition of all northbound callbacks and their
associated YANG data paths.
* isis_nb_config.c: implementation of YANG configuration nodes.
* isis_nb_state.c: implementation of YANG state nodes.
* isis_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 'isisd/isis_pdu.c')
-rw-r--r-- | isisd/isis_pdu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index a637ff003..71249cf65 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -58,6 +58,7 @@ #include "isisd/fabricd.h" #include "isisd/isis_tx_queue.h" #include "isisd/isis_pdu_counter.h" +#include "isisd/isis_nb.h" static int ack_lsp(struct isis_lsp_hdr *hdr, struct isis_circuit *circuit, int level) |