]> git.proxmox.com Git - mirror_frr.git/blame - sharpd/sharp_globals.h
bgpd: [7.1] add addpath ID to adj_out tree sort (#5691)
[mirror_frr.git] / sharpd / sharp_globals.h
CommitLineData
d21f1a93
DS
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
86da53ab
DS
25DECLARE_MGROUP(SHARPD)
26
547dc642
DS
27struct sharp_routes {
28 /* The original prefix for route installation */
29 struct prefix orig_prefix;
30
31 /* The nexthop group we are using for installation */
32 struct nexthop nhop;
33 struct nexthop_group nhop_group;
34
35 uint32_t total_routes;
36 uint32_t installed_routes;
37 uint32_t removed_routes;
38 int32_t repeat;
39
40 uint8_t inst;
0cf08685 41 vrf_id_t vrf_id;
547dc642
DS
42
43 struct timeval t_start;
44 struct timeval t_end;
45};
46
d21f1a93 47struct sharp_global {
f59e6418 48 /* Global data about route install/deletions */
547dc642 49 struct sharp_routes r;
86da53ab
DS
50
51 /* The list of nexthops that we are watching and data about them */
52 struct list *nhs;
d21f1a93
DS
53};
54
547dc642 55extern struct sharp_global sg;
d21f1a93 56#endif