]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_memory.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / eigrpd / eigrp_memory.h
1 /* eigrpd memory type declarations
2 *
3 * Copyright (C) 2017 Donald Sharp
4 *
5 * This file is part of FRR.
6 *
7 * FRR 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 * FRR 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 _FRR_EIGRP_MEMORY_H
23 #define _FRR_EIGRP_MEMORY_H
24
25 #include "memory.h"
26
27 DECLARE_MGROUP(EIGRPD)
28 DECLARE_MTYPE(EIGRP_TOP)
29 DECLARE_MTYPE(EIGRP_IF)
30 DECLARE_MTYPE(EIGRP_NEIGHBOR)
31 DECLARE_MTYPE(EIGRP_IF_PARAMS)
32 DECLARE_MTYPE(EIGRP_IF_INFO)
33 DECLARE_MTYPE(EIGRP_FIFO)
34 DECLARE_MTYPE(EIGRP_PACKET)
35 DECLARE_MTYPE(EIGRP_IPV4_INT_TLV)
36 DECLARE_MTYPE(EIGRP_SEQ_TLV)
37 DECLARE_MTYPE(EIGRP_AUTH_TLV)
38 DECLARE_MTYPE(EIGRP_AUTH_SHA256_TLV)
39 DECLARE_MTYPE(EIGRP_PREFIX_ENTRY)
40 DECLARE_MTYPE(EIGRP_NEXTHOP_ENTRY)
41 DECLARE_MTYPE(EIGRP_FSM_MSG)
42
43 #endif /* _FRR_EIGRP_MEMORY_H */