]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_vxlan_instance.h
pimd: initial infrastructure to maintain VxLAN SG database
[mirror_frr.git] / pimd / pim_vxlan_instance.h
1 /* PIM support for VxLAN BUM flooding
2 *
3 * Copyright (C) 2019 Cumulus Networks, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 */
16
17 #ifndef PIM_VXLAN_INSTANCE_H
18 #define PIM_VXLAN_INSTANCE_H
19
20 struct pim_vxlan_instance {
21 struct hash *sg_hash;
22 };
23
24 extern void pim_vxlan_init(struct pim_instance *pim);
25 extern void pim_vxlan_exit(struct pim_instance *pim);
26
27 #endif /* PIM_VXLAN_INSTANCE_H */