3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include <wireshark.h>
13 #include <wsutil/inet_cidr.h>
17 #endif /* __cplusplus */
24 struct ws_iana_ip_special_block
{
27 ipv4_addr_and_mask ipv4
;
28 ipv6_addr_and_prefix ipv6
;
31 /* true = 1; false = 0; n/a = -1 */
32 int source
, destination
, forwardable
, global
, reserved
;
36 const struct ws_iana_ip_special_block
*
37 ws_iana_ipv4_special_block_lookup(uint32_t ipnum
);
40 const struct ws_iana_ip_special_block
*
41 ws_iana_ipv6_special_block_lookup(const ws_in6_addr
*addr
);
45 #endif /* __cplusplus */