]> git.proxmox.com Git - mirror_frr.git/blame - staticd/static_debug.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / staticd / static_debug.h
CommitLineData
31ddf3b7
MS
1/*
2 * Staticd debug related functions
3 * Copyright (C) 2019 Volta Networks Inc.
4 * Mark Stapp
5 *
6 * This file is part of Free Range Routing (FRR).
7 *
8 * GNU Zebra is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * GNU Zebra is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef _STATIC_DEBUG_H
24#define _STATIC_DEBUG_H
25
26
27#include <zebra.h>
28
29#include "lib/debug.h"
30
31/* staticd debugging records */
32struct debug static_dbg_events;
33
34/*
35 * Initialize staticd debugging.
36 *
37 * Installs VTY commands and registers callbacks.
38 */
39void static_debug_init(void);
40
41/*
42 * Print staticd debugging configuration.
43 *
44 * vty
45 * VTY to print debugging configuration to.
46 */
47int static_config_write_debug(struct vty *vty);
48
49/*
50 * Print staticd debugging configuration, human readable form.
51 *
52 * vty
53 * VTY to print debugging configuration to.
54 */
55int static_debug_status_write(struct vty *vty);
56
57/*
58 * Set debugging status.
59 *
60 * vtynode
61 * vty->node
62 *
63 * onoff
64 * Whether to turn the specified debugs on or off
65 *
66 * events
67 * Debug general internal events
68 *
69 */
70void static_debug_set(int vtynode, bool onoff, bool events);
71
72
73#endif /* _STATIC_DEBUG_H */