![]() |
Wireshark
4.3.0
The Wireshark network protocol analyzer
|
#include <epan/address.h>
#include <epan/tvbuff.h>
#include <wsutil/inet_cidr.h>
#include <epan/to_str.h>
#include <wiretap/wtap.h>
#include "ws_symbol_export.h"
Go to the source code of this file.
Classes | |
struct | _e_addr_resolve |
Flags to control name resolution. More... | |
struct | serv_port |
struct | _resolved_name |
Macros | |
#define | MAXNAMELEN 64 /* max name length (hostname and port name) */ |
#define | MAXVLANNAMELEN 128 /* max vlan name length */ |
#define | BASE_ENTERPRISES BASE_CUSTOM |
#define | STRINGS_ENTERPRISES CF_FUNC(enterprises_base_custom) |
#define | ADDR_RESOLV_MACADDR(at) (((at)->type == AT_ETHER)) |
#define | ADDR_RESOLV_NETADDR(at) (((at)->type == AT_IPv4) || ((at)->type == AT_IPv6) || ((at)->type == AT_IPX)) |
#define | TRIED_RESOLVE_ADDRESS (1U<<0) /* XXX - what does this bit *really* mean? */ |
#define | NAME_RESOLVED (1U<<1) /* the name field contains a host name, not a printable address */ |
#define | RESOLVED_ADDRESS_USED (1U<<2) /* a get_hostname* call returned the host name */ |
#define | STATIC_HOSTNAME (1U<<3) /* do not update entries from hosts file with DNS responses */ |
#define | NAME_RESOLVED_PREFIX (1U<<4) /* name was generated from a prefix (e.g., OUI) instead of the entire address */ |
#define | TRIED_OR_RESOLVED_MASK (TRIED_RESOLVE_ADDRESS | NAME_RESOLVED) |
#define | USED_AND_RESOLVED_MASK (NAME_RESOLVED | RESOLVED_ADDRESS_USED) |
Typedefs | |
typedef struct _e_addr_resolve | e_addr_resolve |
Flags to control name resolution. | |
typedef struct hashether | hashether_t |
typedef struct hashwka | hashwka_t |
typedef struct hashmanuf | hashmanuf_t |
typedef struct serv_port | serv_port_t |
typedef struct _resolved_name | resolved_name_t |
Functions | |
WS_DLL_PUBLIC gchar * | udp_port_to_display (wmem_allocator_t *allocator, guint port) |
WS_DLL_PUBLIC gchar * | tcp_port_to_display (wmem_allocator_t *allocator, guint port) |
gchar * | dccp_port_to_display (wmem_allocator_t *allocator, guint port) |
WS_DLL_PUBLIC gchar * | sctp_port_to_display (wmem_allocator_t *allocator, guint port) |
WS_DLL_PUBLIC const gchar * | serv_name_lookup (port_type proto, guint port) |
WS_DLL_PUBLIC const gchar * | enterprises_lookup (guint32 value, const char *unknown_str) |
WS_DLL_PUBLIC const gchar * | try_enterprises_lookup (guint32 value) |
WS_DLL_PUBLIC void | enterprises_base_custom (char *buf, guint32 value) |
WS_DLL_PUBLIC const gchar * | try_serv_name_lookup (port_type proto, guint port) |
WS_DLL_PUBLIC gchar * | port_with_resolution_to_str (wmem_allocator_t *scope, port_type proto, guint port) |
WS_DLL_PUBLIC int | port_with_resolution_to_str_buf (gchar *buf, gulong buf_size, port_type proto, guint port) |
void | addr_resolve_pref_init (struct pref_module *nameres) |
void | addr_resolve_pref_apply (void) |
WS_DLL_PUBLIC void | disable_name_resolution (void) |
WS_DLL_PUBLIC gboolean | host_name_lookup_process (void) |
WS_DLL_PUBLIC const gchar * | get_hostname (const guint addr) |
WS_DLL_PUBLIC const gchar * | get_hostname6 (const ws_in6_addr *ad) |
WS_DLL_PUBLIC const gchar * | get_ether_name (const guint8 *addr) |
const gchar * | get_hostname_ss7pc (const guint8 ni, const guint32 pc) |
void | fill_unresolved_ss7pc (const gchar *pc_addr, const guint8 ni, const guint32 pc) |
WS_DLL_PUBLIC const gchar * | tvb_get_ether_name (tvbuff_t *tvb, gint offset) |
const gchar * | get_ether_name_if_known (const guint8 *addr) |
const gchar * | get_manuf_name (const guint8 *addr, size_t size) |
WS_DLL_PUBLIC const gchar * | get_manuf_name_if_known (const guint8 *addr, size_t size) |
const gchar * | uint_get_manuf_name_if_known (const guint32 oid) |
WS_DLL_PUBLIC const gchar * | tvb_get_manuf_name (tvbuff_t *tvb, gint offset) |
WS_DLL_PUBLIC const gchar * | tvb_get_manuf_name_if_known (tvbuff_t *tvb, gint offset) |
gchar * | eui64_to_display (wmem_allocator_t *allocator, const guint64 addr) |
gchar * | get_ipxnet_name (wmem_allocator_t *allocator, const guint32 addr) |
gchar * | get_vlan_name (wmem_allocator_t *allocator, const guint16 id) |
WS_DLL_PUBLIC guint | get_hash_ether_status (hashether_t *ether) |
WS_DLL_PUBLIC bool | get_hash_ether_used (hashether_t *ether) |
WS_DLL_PUBLIC char * | get_hash_ether_hexaddr (hashether_t *ether) |
WS_DLL_PUBLIC char * | get_hash_ether_resolved_name (hashether_t *ether) |
WS_DLL_PUBLIC bool | get_hash_manuf_used (hashmanuf_t *manuf) |
WS_DLL_PUBLIC char * | get_hash_manuf_resolved_name (hashmanuf_t *manuf) |
WS_DLL_PUBLIC bool | get_hash_wka_used (hashwka_t *wka) |
WS_DLL_PUBLIC char * | get_hash_wka_resolved_name (hashwka_t *wka) |
WS_DLL_PUBLIC void | add_ipv4_name (const guint addr, const gchar *name, const bool static_entry) |
WS_DLL_PUBLIC void | add_ipv6_name (const ws_in6_addr *addr, const gchar *name, const bool static_entry) |
WS_DLL_PUBLIC gboolean | add_hosts_file (const char *hosts_file) |
WS_DLL_PUBLIC gboolean | add_ip_name_from_string (const char *addr, const char *name) |
WS_DLL_PUBLIC resolved_name_t * | get_edited_resolved_name (const char *addr) |
WS_DLL_PUBLIC addrinfo_lists_t * | get_addrinfo_list (void) |
void | add_ether_byip (const guint ip, const guint8 *eth) |
WS_DLL_PUBLIC gboolean | get_host_ipaddr (const char *host, guint32 *addrp) |
WS_DLL_PUBLIC gboolean | get_host_ipaddr6 (const char *host, ws_in6_addr *addrp) |
WS_DLL_PUBLIC wmem_map_t * | get_manuf_hashtable (void) |
WS_DLL_PUBLIC wmem_map_t * | get_wka_hashtable (void) |
WS_DLL_PUBLIC wmem_map_t * | get_eth_hashtable (void) |
WS_DLL_PUBLIC wmem_map_t * | get_serv_port_hashtable (void) |
WS_DLL_PUBLIC wmem_map_t * | get_ipxnet_hash_table (void) |
WS_DLL_PUBLIC wmem_map_t * | get_vlan_hash_table (void) |
WS_DLL_PUBLIC wmem_map_t * | get_ipv4_hash_table (void) |
WS_DLL_PUBLIC wmem_map_t * | get_ipv6_hash_table (void) |
WS_DLL_PUBLIC void | set_resolution_synchrony (gboolean synchronous) |
WS_DLL_LOCAL void | name_resolver_init (void) |
WS_DLL_LOCAL void | host_name_lookup_reset (void) |
WS_DLL_LOCAL void | addr_resolv_init (void) |
WS_DLL_LOCAL void | addr_resolv_cleanup (void) |
WS_DLL_PUBLIC gboolean | str_to_ip (const char *str, void *dst) |
WS_DLL_PUBLIC gboolean | str_to_ip6 (const char *str, void *dst) |
WS_DLL_LOCAL gboolean | str_to_eth (const char *str, char *eth_bytes) |
WS_DLL_LOCAL guint | ipv6_oat_hash (gconstpointer key) |
WS_DLL_LOCAL gboolean | ipv6_equal (gconstpointer v1, gconstpointer v2) |
Variables | |
WS_DLL_PUBLIC e_addr_resolve | gbl_resolv_flags |
gchar * | g_ethers_path |
gchar * | g_ipxnets_path |
gchar * | g_pethers_path |
gchar * | g_pipxnets_path |
Definitions for network object lookup
Laurent Deniel laure nt.d eniel @fre e.fr
Wireshark - Network traffic analyzer By Gerald Combs geral Copyright 1998 Gerald Combs d@wi resha rk.o rg
SPDX-License-Identifier: GPL-2.0-or-later
WS_DLL_PUBLIC gboolean add_hosts_file | ( | const char * | hosts_file | ) |
Add an additional "hosts" file for IPv4 and IPv6 name resolution.
The file can be added before host_name_lookup_init() is called and will be re-read each time host_name_lookup_init() is called.
hosts_file | Absolute path to the hosts file. |
WS_DLL_PUBLIC addrinfo_lists_t* get_addrinfo_list | ( | void | ) |
Get lists of host name to address mappings we know about.
The struct contains two g_lists one with hashipv4_t entries and one with hashipv6_t entries.
WS_DLL_PUBLIC gboolean get_host_ipaddr | ( | const char * | host, |
guint32 * | addrp | ||
) |
Translates a string representing a hostname or dotted-decimal IPv4 address into a numeric IPv4 address value in network byte order. If compiled with c-ares, the request will wait a maximum of 250ms for the request to finish. Otherwise the wait time will be system-dependent, usually much longer. Immediately returns FALSE for hostnames if network name resolution is disabled.
[in] | host | The hostname. |
[out] | addrp | The numeric IPv4 address in network byte order. |
WS_DLL_PUBLIC gboolean get_host_ipaddr6 | ( | const char * | host, |
ws_in6_addr * | addrp | ||
) |
Translates a string representing a hostname or colon-hex IPv6 address into a numeric IPv6 address value in network byte order. If compiled with c-ares, the request will wait a maximum of 250ms for the request to finish. Otherwise the wait time will be system-dependent, usually much longer. Immediately returns FALSE for hostnames if network name resolution is disabled.
[in] | host | The hostname. |
[out] | addrp | The numeric IPv6 address in network byte order. |
WS_DLL_PUBLIC gboolean host_name_lookup_process | ( | void | ) |
If we're using c-ares process outstanding host name lookups. This is called from a GLIB timeout in Wireshark and before processing each packet in the first pass of two-pass TShark.