no krb5_cksumtype_to_string
[metze/wireshark/wip.git] / epan / ipv6.h
1 /* ipv6.h
2  * Definitions of IPv6 address-and-prefix structure, which is what an
3  * FT_IPV6 value is (even if there's no prefix in a packet, those
4  * values can be compared against an address+prefix in a filter
5  * expression).
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  *
10  * Copyright 1998 Gerald Combs
11  *
12  * MobileIPv6 support added by Tomislav Borosa <tomislav.borosa@siemens.hr>
13  *
14  * SPDX-License-Identifier: GPL-2.0-or-later
15  */
16
17 #ifndef __IPV6_UTILS_H__
18 #define __IPV6_UTILS_H__
19
20 #include <wsutil/inet_ipv6.h>
21
22 typedef struct {
23         ws_in6_addr addr;
24         guint32 prefix;
25 } ipv6_addr_and_prefix;
26
27 #endif /* __IPV6_UTILS_H__ */