]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_netns_notify.h
Merge pull request #5706 from mjstapp/fix_nh_debug_show
[mirror_frr.git] / zebra / zebra_netns_notify.h
CommitLineData
e27dec3c
PG
1/*
2 * Zebra NS collector and notifier for Network NameSpaces
3 * Copyright (C) 2017 6WIND
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef _NETNS_NOTIFY_H
21#define _NETNS_NOTIFY_H
22
51e94aa7
EDP
23#ifdef __cplusplus
24extern "C" {
25#endif
26
e27dec3c
PG
27extern void zebra_ns_notify_init(void);
28extern void zebra_ns_notify_parse(void);
29extern void zebra_ns_notify_close(void);
30
31extern struct zebra_privs_t zserv_privs;
32
51e94aa7
EDP
33#ifdef __cplusplus
34}
35#endif
36
e27dec3c 37#endif /* NETNS_NOTIFY_H */