blob: 460e4f5186a1ced7b563ca21bf07d51441c10d70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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
|