28 #include "ws_symbol_export.h"
38 #ifndef MAXVLANNAMELEN
39 #define MAXVLANNAMELEN 128
42 #define BASE_ENTERPRISES BASE_CUSTOM
43 #define STRINGS_ENTERPRISES CF_FUNC(enterprises_base_custom)
60 #define ADDR_RESOLV_MACADDR(at) \
61 (((at)->type == AT_ETHER))
63 #define ADDR_RESOLV_NETADDR(at) \
64 (((at)->type == AT_IPv4) || ((at)->type == AT_IPv6) || ((at)->type == AT_IPX))
81 char name[MAXNAMELEN];
87 #define TRIED_RESOLVE_ADDRESS (1U<<0)
88 #define NAME_RESOLVED (1U<<1)
89 #define RESOLVED_ADDRESS_USED (1U<<2)
90 #define STATIC_HOSTNAME (1U<<3)
92 #define TRIED_OR_RESOLVED_MASK (TRIED_RESOLVE_ADDRESS | NAME_RESOLVED)
93 #define USED_AND_RESOLVED_MASK (NAME_RESOLVED | RESOLVED_ADDRESS_USED)
102 extern gchar *g_ethers_path;
103 extern gchar *g_ipxnets_path;
104 extern gchar *g_pethers_path;
105 extern gchar *g_pipxnets_path;
113 WS_DLL_PUBLIC gchar *udp_port_to_display(
wmem_allocator_t *allocator, guint port);
119 WS_DLL_PUBLIC gchar *tcp_port_to_display(
wmem_allocator_t *allocator, guint port);
125 extern gchar *dccp_port_to_display(
wmem_allocator_t *allocator, guint port);
131 WS_DLL_PUBLIC gchar *sctp_port_to_display(
wmem_allocator_t *allocator, guint port);
137 WS_DLL_PUBLIC
const gchar *serv_name_lookup(port_type proto, guint port);
143 WS_DLL_PUBLIC
const gchar *enterprises_lookup(guint32 value,
const char *unknown_str);
148 WS_DLL_PUBLIC
const gchar *try_enterprises_lookup(guint32 value);
154 WS_DLL_PUBLIC
void enterprises_base_custom(
char *buf, guint32 value);
160 WS_DLL_PUBLIC
const gchar *try_serv_name_lookup(port_type proto, guint port);
167 port_type proto, guint port);
173 WS_DLL_PUBLIC
int port_with_resolution_to_str_buf(gchar *buf, gulong buf_size,
174 port_type proto, guint port);
182 extern void addr_resolve_pref_init(
struct pref_module *nameres);
183 extern void addr_resolve_pref_apply(
void);
188 WS_DLL_PUBLIC
void disable_name_resolution(
void);
200 WS_DLL_PUBLIC
const gchar *get_hostname(
const guint addr);
203 WS_DLL_PUBLIC
const gchar *get_hostname6(
const ws_in6_addr *ad);
208 WS_DLL_PUBLIC
const gchar *get_ether_name(
const guint8 *addr);
212 const gchar *get_hostname_ss7pc(
const guint8 ni,
const guint32 pc);
215 void fill_unresolved_ss7pc(
const gchar * pc_addr,
const guint8 ni,
const guint32 pc);
219 WS_DLL_PUBLIC
const gchar *tvb_get_ether_name(
tvbuff_t *tvb, gint offset);
222 const gchar *get_ether_name_if_known(
const guint8 *addr);
228 extern const gchar *get_manuf_name(
const guint8 *addr,
size_t size);
234 WS_DLL_PUBLIC
const gchar *get_manuf_name_if_known(
const guint8 *addr,
size_t size);
240 extern const gchar *uint_get_manuf_name_if_known(
const guint32 oid);
247 WS_DLL_PUBLIC
const gchar *tvb_get_manuf_name(
tvbuff_t *tvb, gint offset);
254 WS_DLL_PUBLIC
const gchar *tvb_get_manuf_name_if_known(
tvbuff_t *tvb, gint offset);
258 extern gchar *eui64_to_display(
wmem_allocator_t *allocator,
const guint64 addr);
262 extern gchar *get_ipxnet_name(
wmem_allocator_t *allocator,
const guint32 addr);
268 WS_DLL_PUBLIC guint get_hash_ether_status(
hashether_t* ether);
269 WS_DLL_PUBLIC
char* get_hash_ether_hexaddr(
hashether_t* ether);
270 WS_DLL_PUBLIC
char* get_hash_ether_resolved_name(
hashether_t* ether);
272 WS_DLL_PUBLIC
char* get_hash_manuf_resolved_name(
hashmanuf_t* manuf);
276 WS_DLL_PUBLIC
void add_ipv4_name(
const guint addr,
const gchar *
name,
const gboolean static_entry);
279 WS_DLL_PUBLIC
void add_ipv6_name(
const ws_in6_addr *addr,
const gchar *
name,
const gboolean static_entry);
293 WS_DLL_PUBLIC gboolean add_ip_name_from_string (
const char *addr,
const char *
name);
296 WS_DLL_PUBLIC
resolved_name_t* get_edited_resolved_name(
const char* addr);
308 extern void add_ether_byip(
const guint ip,
const guint8 *eth);
368 void set_resolution_synchrony(gboolean synchronous);
375 void name_resolver_init(
void);
379 void host_name_lookup_reset(
void);
382 void addr_resolv_init(
void);
385 void addr_resolv_cleanup(
void);
388 gboolean str_to_ip(
const char *str,
void *dst);
391 gboolean str_to_ip6(
const char *str,
void *dst);
394 gboolean str_to_eth(
const char *str,
char *eth_bytes);
397 guint ipv6_oat_hash(gconstpointer key);
400 gboolean ipv6_equal(gconstpointer v1, gconstpointer v2);
WS_DLL_PUBLIC gboolean get_host_ipaddr(const char *host, guint32 *addrp)
Definition: addr_resolv.c:3623
WS_DLL_PUBLIC gboolean host_name_lookup_process(void)
Definition: addr_resolv.c:3025
WS_DLL_PUBLIC gboolean add_hosts_file(const char *hosts_file)
Definition: addr_resolv.c:2422
WS_DLL_PUBLIC gboolean get_host_ipaddr6(const char *host, ws_in6_addr *addrp)
Definition: addr_resolv.c:3685
WS_DLL_PUBLIC addrinfo_lists_t * get_addrinfo_list(void)
Definition: addr_resolv.c:2549
struct _e_addr_resolve e_addr_resolve
Flags to control name resolution.
Flags to control name resolution.
Definition: addr_resolv.h:48
gboolean network_name
Definition: addr_resolv.h:50
gboolean transport_name
Definition: addr_resolv.h:51
gboolean use_external_net_name_resolver
Definition: addr_resolv.h:53
gboolean ss7pc_name
Definition: addr_resolv.h:56
gboolean mac_name
Definition: addr_resolv.h:49
gboolean load_hosts_file_from_profile_only
Definition: addr_resolv.h:54
gboolean maxmind_geoip
Definition: addr_resolv.h:57
gboolean dns_pkt_addr_resolution
Definition: addr_resolv.h:52
gboolean vlan_name
Definition: addr_resolv.h:55
Definition: addr_resolv.h:80
Definition: wmem_allocator.h:27
Definition: wmem_map.c:44
Definition: inet_ipv6.h:21
Definition: addr_resolv.c:168
Definition: addr_resolv.c:175
Definition: prefs-int.h:27
const char * name
Definition: prefs-int.h:28
Definition: addr_resolv.h:72
Definition: tvbuff-int.h:35