]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_mroute.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / zebra / zebra_mroute.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* zebra_mroute.h
3 * Copyright (C) 2016 Cumulus Networks, Inc.
4 * Donald Sharp
5 */
6
7 #ifndef __ZEBRA_MROUTE_H__
8 #define __ZEBRA_MROUTE_H__
9
10 #include "zebra/zserv.h"
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 struct mcast_route_data {
17 int family;
18 struct ipaddr src;
19 struct ipaddr grp;
20 unsigned int ifindex;
21 unsigned long long lastused;
22 };
23
24 void zebra_ipmr_route_stats(ZAPI_HANDLER_ARGS);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif