]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_memory.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / pimd / pim_memory.h
CommitLineData
4a1ab8e4
DL
1/* pimd memory type declarations
2 *
3 * Copyright (C) 2015 David Lamparter
4 *
5 * This file is part of Quagga.
6 *
7 * Quagga is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * Quagga is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
4a1ab8e4
DL
20 */
21
22#ifndef _QUAGGA_PIM_MEMORY_H
23#define _QUAGGA_PIM_MEMORY_H
24
25#include "memory.h"
26
27DECLARE_MGROUP(PIMD)
28DECLARE_MTYPE(PIM_CHANNEL_OIL)
29DECLARE_MTYPE(PIM_INTERFACE)
30DECLARE_MTYPE(PIM_IGMP_JOIN)
31DECLARE_MTYPE(PIM_IGMP_SOCKET)
32DECLARE_MTYPE(PIM_IGMP_GROUP)
33DECLARE_MTYPE(PIM_IGMP_GROUP_SOURCE)
34DECLARE_MTYPE(PIM_NEIGHBOR)
35DECLARE_MTYPE(PIM_IFCHANNEL)
36DECLARE_MTYPE(PIM_UPSTREAM)
37DECLARE_MTYPE(PIM_SSMPINGD)
38DECLARE_MTYPE(PIM_STATIC_ROUTE)
39DECLARE_MTYPE(PIM_BR)
36d6bd7d 40DECLARE_MTYPE(PIM_RP)
dfe43e25 41DECLARE_MTYPE(PIM_FILTER_NAME)
2a333e0f 42DECLARE_MTYPE(PIM_MSDP_PEER)
977d71cc 43DECLARE_MTYPE(PIM_MSDP_MG_NAME)
3c72d654 44DECLARE_MTYPE(PIM_MSDP_SA)
977d71cc 45DECLARE_MTYPE(PIM_MSDP_MG)
46DECLARE_MTYPE(PIM_MSDP_MG_MBR)
7176984f 47DECLARE_MTYPE(PIM_SEC_ADDR)
982bff89
DS
48DECLARE_MTYPE(PIM_JP_AGG_GROUP)
49DECLARE_MTYPE(PIM_JP_AGG_SOURCE)
1bc98276
CS
50DECLARE_MTYPE(PIM_PIM_INSTANCE)
51DECLARE_MTYPE(PIM_NEXTHOP_CACHE)
15a5dafe 52DECLARE_MTYPE(PIM_SSM_INFO)
df94f9a9 53DECLARE_MTYPE(PIM_SPT_PLIST_NAME);
b583b035 54DECLARE_MTYPE(PIM_VXLAN_SG)
1bc98276 55
4a1ab8e4 56#endif /* _QUAGGA_PIM_MEMORY_H */