]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_memory.h
Merge pull request #2978 from ton31337/fix/default_originate_after_second_enter
[mirror_frr.git] / eigrpd / eigrp_memory.h
CommitLineData
7f57883e
DS
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 *
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
7f57883e
DS
20 */
21
22#ifndef _FRR_EIGRP_MEMORY_H
23#define _FRR_EIGRP_MEMORY_H
24
25#include "memory.h"
26
27DECLARE_MGROUP(EIGRPD)
28DECLARE_MTYPE(EIGRP_TOP)
29DECLARE_MTYPE(EIGRP_IF)
30DECLARE_MTYPE(EIGRP_NEIGHBOR)
31DECLARE_MTYPE(EIGRP_IF_PARAMS)
32DECLARE_MTYPE(EIGRP_IF_INFO)
33DECLARE_MTYPE(EIGRP_FIFO)
34DECLARE_MTYPE(EIGRP_PACKET)
35DECLARE_MTYPE(EIGRP_IPV4_INT_TLV)
36DECLARE_MTYPE(EIGRP_SEQ_TLV)
37DECLARE_MTYPE(EIGRP_AUTH_TLV)
38DECLARE_MTYPE(EIGRP_AUTH_SHA256_TLV)
39DECLARE_MTYPE(EIGRP_PREFIX_ENTRY)
255ab940 40DECLARE_MTYPE(EIGRP_NEXTHOP_ENTRY)
7f57883e 41DECLARE_MTYPE(EIGRP_FSM_MSG)
d62a17ae 42
7f57883e 43#endif /* _FRR_EIGRP_MEMORY_H */