]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_memory.h
Merge pull request #379 from pguibert6WIND/frrouting_issue309_2
[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 *
17 * You should have received a copy of the GNU General Public License
18 * along with Quagga; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _QUAGGA_PIM_MEMORY_H
24#define _QUAGGA_PIM_MEMORY_H
25
26#include "memory.h"
27
28DECLARE_MGROUP(PIMD)
29DECLARE_MTYPE(PIM_CHANNEL_OIL)
30DECLARE_MTYPE(PIM_INTERFACE)
31DECLARE_MTYPE(PIM_IGMP_JOIN)
32DECLARE_MTYPE(PIM_IGMP_SOCKET)
33DECLARE_MTYPE(PIM_IGMP_GROUP)
34DECLARE_MTYPE(PIM_IGMP_GROUP_SOURCE)
35DECLARE_MTYPE(PIM_NEIGHBOR)
36DECLARE_MTYPE(PIM_IFCHANNEL)
37DECLARE_MTYPE(PIM_UPSTREAM)
38DECLARE_MTYPE(PIM_SSMPINGD)
39DECLARE_MTYPE(PIM_STATIC_ROUTE)
40DECLARE_MTYPE(PIM_BR)
36d6bd7d 41DECLARE_MTYPE(PIM_RP)
dfe43e25 42DECLARE_MTYPE(PIM_FILTER_NAME)
2a333e0f 43DECLARE_MTYPE(PIM_MSDP_PEER)
977d71cc 44DECLARE_MTYPE(PIM_MSDP_MG_NAME)
3c72d654 45DECLARE_MTYPE(PIM_MSDP_SA)
977d71cc 46DECLARE_MTYPE(PIM_MSDP_MG)
47DECLARE_MTYPE(PIM_MSDP_MG_MBR)
7176984f 48DECLARE_MTYPE(PIM_SEC_ADDR)
982bff89
DS
49DECLARE_MTYPE(PIM_JP_AGG_GROUP)
50DECLARE_MTYPE(PIM_JP_AGG_SOURCE)
1bc98276
CS
51DECLARE_MTYPE(PIM_PIM_INSTANCE)
52DECLARE_MTYPE(PIM_NEXTHOP_CACHE)
15a5dafe 53DECLARE_MTYPE(PIM_SSM_INFO)
1bc98276 54
4a1ab8e4 55#endif /* _QUAGGA_PIM_MEMORY_H */