2023-02-08 13:17:09 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-12-13 11:04:31 +01:00
|
|
|
/*
|
|
|
|
* Zebra NS collector and notifier for Network NameSpaces
|
|
|
|
* Copyright (C) 2017 6WIND
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETNS_NOTIFY_H
|
|
|
|
#define _NETNS_NOTIFY_H
|
|
|
|
|
2019-03-25 15:11:55 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-12-13 11:04:31 +01:00
|
|
|
extern void zebra_ns_notify_init(void);
|
|
|
|
extern void zebra_ns_notify_parse(void);
|
|
|
|
extern void zebra_ns_notify_close(void);
|
|
|
|
|
|
|
|
extern struct zebra_privs_t zserv_privs;
|
|
|
|
|
2019-03-25 15:11:55 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-12-13 11:04:31 +01:00
|
|
|
#endif /* NETNS_NOTIFY_H */
|