]> git.proxmox.com Git - mirror_frr.git/blob - sharpd/sharp_globals.h
sharpd: Add 'sharp data route" dump command
[mirror_frr.git] / sharpd / sharp_globals.h
1 /*
2 * SHARP - code to track globals
3 * Copyright (C) 2019 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This file is part of FRR.
7 *
8 * FRR 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 * FRR 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 #ifndef __SHARP_GLOBAL_H__
23 #define __SHARP_GLOBAL_H__
24
25 struct sharp_routes {
26 /* The original prefix for route installation */
27 struct prefix orig_prefix;
28
29 /* The nexthop group we are using for installation */
30 struct nexthop nhop;
31 struct nexthop_group nhop_group;
32
33 uint32_t total_routes;
34 uint32_t installed_routes;
35 uint32_t removed_routes;
36 int32_t repeat;
37
38 uint8_t inst;
39
40 struct timeval t_start;
41 struct timeval t_end;
42 };
43
44 struct sharp_global {
45 /* Global data about route install/deletions */
46 struct sharp_routes r;
47 };
48
49 extern struct sharp_global sg;
50 #endif