1/*
2 * Copyright (C) 1999 Yasuhiro Ohara
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING.  If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#ifndef OSPF6_TYPES_H
23#define OSPF6_TYPES_H
24
25typedef unsigned char  msgtype_t;
26typedef unsigned char  instance_id_t;
27typedef unsigned char  state_t;
28typedef unsigned char  vers_t;
29typedef unsigned char  opt_t;
30typedef unsigned char  rtr_pri_t;
31typedef unsigned char  prefixlen_t;
32typedef unsigned char  ddbits_t;
33typedef unsigned long  ddseqnum_t;
34typedef unsigned long  rtr_id_t;
35typedef unsigned long  ifid_t;
36typedef unsigned long  cost_t;
37typedef unsigned long  rxmt_int_t;
38typedef unsigned short hello_int_t;
39typedef unsigned short rtr_dead_int_t;
40typedef unsigned long  area_id_t;
41
42#endif /* OSPF6_TYPES_H */
43
44