MAX_MCS_INDEX is a valid array index.
[metze/wireshark/wip.git] / epan / ipv6.h
1 /* ipv6.h
2  * Definitions for IPv6 packet disassembly
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  *
7  * Copyright 1998 Gerald Combs
8  *
9  * MobileIPv6 support added by Tomislav Borosa <tomislav.borosa@siemens.hr>
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25
26 #ifndef __IPV6_UTILS_H__
27 #define __IPV6_UTILS_H__
28
29 struct e_in6_addr {
30         guint8   bytes[16];             /**< 128 bit IP6 address */
31 };
32
33 typedef struct {
34         struct e_in6_addr addr;
35         guint32 prefix;
36 } ipv6_addr_and_prefix;
37
38 #endif /* __IPV6_UTILS_H__ */