diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2019-10-17 15:33:53 -0300 | 
|---|---|---|
| committer | Renato Westphal <renato@opensourcerouting.org> | 2019-10-29 21:49:14 -0300 | 
| commit | 2a1c520e9f105b1a1bbdb89d59ad3c3953f46f49 (patch) | |
| tree | 23ebce15b36d13f0164d1961aa3cc8df452bffc6 /isisd/isis_pdu.c | |
| parent | 37cdb6e91dd8410bb884c15a818a37775e9cd135 (diff) | |
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 a637ff003f..71249cf658 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)  | 
