]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_memory.h
lib: enforce vrf_name_to_id by returning default_vrf when name is null
[mirror_frr.git] / pimd / pim_memory.h
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 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
20 */
21
22 #ifndef _QUAGGA_PIM_MEMORY_H
23 #define _QUAGGA_PIM_MEMORY_H
24
25 #include "memory.h"
26
27 DECLARE_MGROUP(PIMD)
28 DECLARE_MTYPE(PIM_CHANNEL_OIL)
29 DECLARE_MTYPE(PIM_INTERFACE)
30 DECLARE_MTYPE(PIM_IGMP_JOIN)
31 DECLARE_MTYPE(PIM_IGMP_SOCKET)
32 DECLARE_MTYPE(PIM_IGMP_GROUP)
33 DECLARE_MTYPE(PIM_IGMP_GROUP_SOURCE)
34 DECLARE_MTYPE(PIM_NEIGHBOR)
35 DECLARE_MTYPE(PIM_IFCHANNEL)
36 DECLARE_MTYPE(PIM_UPSTREAM)
37 DECLARE_MTYPE(PIM_SSMPINGD)
38 DECLARE_MTYPE(PIM_STATIC_ROUTE)
39 DECLARE_MTYPE(PIM_BR)
40 DECLARE_MTYPE(PIM_RP)
41 DECLARE_MTYPE(PIM_FILTER_NAME)
42 DECLARE_MTYPE(PIM_MSDP_PEER)
43 DECLARE_MTYPE(PIM_MSDP_MG_NAME)
44 DECLARE_MTYPE(PIM_MSDP_SA)
45 DECLARE_MTYPE(PIM_MSDP_MG)
46 DECLARE_MTYPE(PIM_MSDP_MG_MBR)
47 DECLARE_MTYPE(PIM_SEC_ADDR)
48 DECLARE_MTYPE(PIM_JP_AGG_GROUP)
49 DECLARE_MTYPE(PIM_JP_AGG_SOURCE)
50 DECLARE_MTYPE(PIM_PIM_INSTANCE)
51 DECLARE_MTYPE(PIM_NEXTHOP_CACHE)
52 DECLARE_MTYPE(PIM_SSM_INFO)
53 DECLARE_MTYPE(PIM_SPT_PLIST_NAME);
54
55 #endif /* _QUAGGA_PIM_MEMORY_H */