summaryrefslogtreecommitdiff
path: root/zebra/redistribute.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-04-22 16:01:20 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-04-22 22:50:24 -0400
commitbf094f69758888e3bd555a24e91f3768bffbf31a (patch)
treeeb4c2bbbdc5bb7350a1efbaff27d14655c2f168c /zebra/redistribute.h
parent616022e9582caf32d26ad7b08007052050b7c65e (diff)
zebra: clean up zapi organization
zserv.c has become something of a dumping ground for everything vaguely related to ZAPI and really needs some love. This change splits out the code fo building and consuming ZAPI messages into a separate source file, leaving the actual session and client lifecycle code in zserv.c. Unfortunately since the #include situation in Zebra has not been paid much attention I was forced to fix the headers in a lot of other source files. This is a net improvement overall though. Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/redistribute.h')
-rw-r--r--zebra/redistribute.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/zebra/redistribute.h b/zebra/redistribute.h
index c78480d9a3..9b4820acd4 100644
--- a/zebra/redistribute.h
+++ b/zebra/redistribute.h
@@ -23,10 +23,12 @@
#define _ZEBRA_REDISTRIBUTE_H
#include "table.h"
-#include "zserv.h"
#include "vty.h"
#include "vrf.h"
+#include "zebra/zserv.h"
+#include "zebra/rib.h"
+
/* ZAPI command handlers */
extern void zebra_redistribute_add(ZAPI_HANDLER_ARGS);
extern void zebra_redistribute_delete(ZAPI_HANDLER_ARGS);