mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 06:38:04 +00:00 
			
		
		
		
	Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			25 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/*
 | 
						|
 * Zebra NS collector and notifier for Network NameSpaces
 | 
						|
 * Copyright (C) 2017 6WIND
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _NETNS_NOTIFY_H
 | 
						|
#define _NETNS_NOTIFY_H
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
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;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* NETNS_NOTIFY_H */
 |