Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
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;
26 
27 #endif /* __IPV6_UTILS_H__ */
Definition: inet_ipv6.h:20
Definition: ipv6.h:22