aboutsummaryrefslogtreecommitdiffstats
path: root/epan/addr_resolv.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2024-03-30 10:28:47 -0700
committerGerald Combs <gerald@wireshark.org>2024-03-31 16:09:23 +0000
commit5a9393c646560ad1a1cc3871ad95bab3c8af20ec (patch)
tree3901368af7e5e068a17de326cd4c8c6e4c37cb60 /epan/addr_resolv.h
parent20046e4a0de610b00a1938374e6cef38df8f92dd (diff)
Switch our boolean preferences to bool
With the aid of a script, convert our boolean preferences from gboolean to bool. Ping #19116
Diffstat (limited to 'epan/addr_resolv.h')
-rw-r--r--epan/addr_resolv.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/addr_resolv.h b/epan/addr_resolv.h
index dd73046750..8cf4b55943 100644
--- a/epan/addr_resolv.h
+++ b/epan/addr_resolv.h
@@ -46,14 +46,14 @@ extern "C" {
* @brief Flags to control name resolution.
*/
typedef struct _e_addr_resolve {
- gboolean mac_name; /**< Whether to resolve Ethernet MAC to manufacturer names */
- gboolean network_name; /**< Whether to resolve IPv4, IPv6, and IPX addresses into host names */
- gboolean transport_name; /**< Whether to resolve TCP/UDP/DCCP/SCTP ports into service names */
- gboolean dns_pkt_addr_resolution; /**< Whether to resolve addresses using captured DNS packets */
- gboolean use_external_net_name_resolver; /**< Whether to system's configured DNS server to resolve names */
- gboolean vlan_name; /**< Whether to resolve VLAN IDs to names */
- gboolean ss7pc_name; /**< Whether to resolve SS7 Point Codes to names */
- gboolean maxmind_geoip; /**< Whether to lookup geolocation information with mmdbresolve */
+ bool mac_name; /**< Whether to resolve Ethernet MAC to manufacturer names */
+ bool network_name; /**< Whether to resolve IPv4, IPv6, and IPX addresses into host names */
+ bool transport_name; /**< Whether to resolve TCP/UDP/DCCP/SCTP ports into service names */
+ bool dns_pkt_addr_resolution; /**< Whether to resolve addresses using captured DNS packets */
+ bool use_external_net_name_resolver; /**< Whether to system's configured DNS server to resolve names */
+ bool vlan_name; /**< Whether to resolve VLAN IDs to names */
+ bool ss7pc_name; /**< Whether to resolve SS7 Point Codes to names */
+ bool maxmind_geoip; /**< Whether to lookup geolocation information with mmdbresolve */
} e_addr_resolve;
#define ADDR_RESOLV_MACADDR(at) \