summaryrefslogtreecommitdiffstats
path: root/vrrpd/vrrp_zebra.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-11-19 21:51:52 +0100
committerQuentin Young <qlyoung@cumulusnetworks.com>2019-05-17 02:27:08 +0200
commit5435a2bf61c4179e8b69af5d3a808b42f5387177 (patch)
treef4f0f9f8b0d7304d84360928f31f640740c8fcde /vrrpd/vrrp_zebra.h
parentMerge pull request #4355 from donaldsharp/revert_rtadv_changes (diff)
downloadfrr-5435a2bf61c4179e8b69af5d3a808b42f5387177.tar.xz
frr-5435a2bf61c4179e8b69af5d3a808b42f5387177.zip
vrrpd: initial commit
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/vrrp_zebra.h')
-rw-r--r--vrrpd/vrrp_zebra.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/vrrpd/vrrp_zebra.h b/vrrpd/vrrp_zebra.h
new file mode 100644
index 000000000..be6338f17
--- /dev/null
+++ b/vrrpd/vrrp_zebra.h
@@ -0,0 +1,29 @@
+/*
+ * Zebra interfacing
+ * Copyright (C) 2018 Cumulus Networks, Inc.
+ * Quentin Young
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+#ifndef __VRRP_ZEBRA_H__
+#define __VRRP_ZEBRA_H__
+
+#include "zclient.h"
+#include "thread.h"
+
+extern struct thread_master *master;
+extern struct zebra_privs_t vrrp_privs;
+extern void vrrp_zebra_init(void);
+#endif