mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 11:45:06 +00:00 
			
		
		
		
	Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			364 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/*
 | 
						|
 * VTY library for SHARP
 | 
						|
 * Copyright (C) Cumulus Networks, Inc.
 | 
						|
 *               Donald Sharp
 | 
						|
 */
 | 
						|
#ifndef __SHARP_VTY_H__
 | 
						|
#define __SHARP_VTY_H__
 | 
						|
 | 
						|
extern void sharp_vty_init(void);
 | 
						|
 | 
						|
struct vty;
 | 
						|
 | 
						|
extern void sharp_logpump_run(struct vty *vty, unsigned duration,
 | 
						|
			      unsigned frequency, unsigned burst);
 | 
						|
 | 
						|
#endif
 |