]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_types.h
tools: improve explanation of 'wrap' options
[mirror_frr.git] / eigrpd / eigrp_types.h
CommitLineData
e9f1847e
DS
1/*
2 * EIGRP Definition of Data Types
3 * Copyright (C) 2018
4 * Authors:
5 * Donnie Savage
6 *
7 * This file is part of FRR.
8 *
9 * FRR is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * FRR is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#ifndef _ZEBRA_EIGRP_TYPES_H_
25#define _ZEBRA_EIGRP_TYPES_H_
26
27typedef uint64_t eigrp_bandwidth_t;
28typedef uint64_t eigrp_delay_t;
29typedef uint64_t eigrp_metric_t;
30typedef uint32_t eigrp_scaled_t;
31
32typedef uint32_t eigrp_system_metric_t;
33typedef uint32_t eigrp_system_delay_t;
34typedef uint32_t eigrp_system_bandwidth_t;
35
36#endif /* _ZEBRA_EIGRP_TYPES_H_ */