28#include "ws_symbol_export.h"
39#define MAXVLANNAMELEN 128
43#define MAXDNSNAMELEN 256
46#define BASE_ENTERPRISES BASE_CUSTOM
47#define STRINGS_ENTERPRISES CF_FUNC(enterprises_base_custom)
64#define ADDR_RESOLV_MACADDR(at) \
65 (((at)->type == AT_ETHER))
67#define ADDR_RESOLV_NETADDR(at) \
68 (((at)->type == AT_IPv4) || ((at)->type == AT_IPv6) || ((at)->type == AT_IPX))
82 const char *sctp_name;
83 const char *dccp_name;
89 char name[MAXDNSNAMELEN];
95#define TRIED_RESOLVE_ADDRESS (1U<<0)
96#define NAME_RESOLVED (1U<<1)
97#define RESOLVED_ADDRESS_USED (1U<<2)
98#define STATIC_HOSTNAME (1U<<3)
99#define NAME_RESOLVED_PREFIX (1U<<4)
101#define TRIED_OR_RESOLVED_MASK (TRIED_RESOLVE_ADDRESS | NAME_RESOLVED)
102#define USED_AND_RESOLVED_MASK (NAME_RESOLVED | RESOLVED_ADDRESS_USED)
111extern char *g_ethers_path;
112extern char *g_ipxnets_path;
113extern char *g_pethers_path;
114extern char *g_pipxnets_path;
121WS_DLL_PUBLIC
hashipv4_t * new_ipv4(
const unsigned addr);
126WS_DLL_PUBLIC
bool fill_dummy_ip4(
const unsigned addr,
hashipv4_t*
volatile tp);
132WS_DLL_PUBLIC
char *udp_port_to_display(
wmem_allocator_t *allocator,
unsigned port);
138WS_DLL_PUBLIC
char *tcp_port_to_display(
wmem_allocator_t *allocator,
unsigned port);
144extern char *dccp_port_to_display(
wmem_allocator_t *allocator,
unsigned port);
150WS_DLL_PUBLIC
char *sctp_port_to_display(
wmem_allocator_t *allocator,
unsigned port);
156WS_DLL_PUBLIC
const char *serv_name_lookup(port_type proto,
unsigned port);
162WS_DLL_PUBLIC
const char *enterprises_lookup(uint32_t value,
const char *unknown_str);
167WS_DLL_PUBLIC
const char *try_enterprises_lookup(uint32_t value);
173WS_DLL_PUBLIC
void enterprises_base_custom(
char *buf, uint32_t value);
179WS_DLL_PUBLIC
const char *try_serv_name_lookup(port_type proto,
unsigned port);
186 port_type proto,
unsigned port);
192WS_DLL_PUBLIC
int port_with_resolution_to_str_buf(
char *buf,
unsigned long buf_size,
193 port_type proto,
unsigned port);
201extern void addr_resolve_pref_init(
struct pref_module *nameres);
202extern void addr_resolve_pref_apply(
void);
207WS_DLL_PUBLIC
void disable_name_resolution(
void);
226WS_DLL_PUBLIC
const char *get_hostname(
const unsigned addr);
230WS_DLL_PUBLIC
char *get_hostname_wmem(
wmem_allocator_t *allocator,
const unsigned addr);
240WS_DLL_PUBLIC
const char *get_hostname6(
const ws_in6_addr *ad);
249WS_DLL_PUBLIC
const char *get_ether_name(
const uint8_t *addr);
253const char *get_hostname_ss7pc(
const uint8_t ni,
const uint32_t pc);
256void fill_unresolved_ss7pc(
const char * pc_addr,
const uint8_t ni,
const uint32_t pc);
260WS_DLL_PUBLIC
const char *tvb_get_ether_name(
tvbuff_t *tvb,
int offset);
267const char *get_ether_name_if_known(
const uint8_t *addr);
279extern const char *get_manuf_name(
const uint8_t *addr,
size_t size);
291WS_DLL_PUBLIC
const char *get_manuf_name_if_known(
const uint8_t *addr,
size_t size);
299extern const char *uint_get_manuf_name_if_known(
const uint32_t oid);
310WS_DLL_PUBLIC
const char *tvb_get_manuf_name(
tvbuff_t *tvb,
int offset);
319WS_DLL_PUBLIC
const char *tvb_get_manuf_name_if_known(
tvbuff_t *tvb,
int offset);
325extern char *eui64_to_display(
wmem_allocator_t *allocator,
const uint64_t addr);
329extern char *get_ipxnet_name(
wmem_allocator_t *allocator,
const uint32_t addr);
335WS_DLL_PUBLIC
unsigned get_hash_ether_status(
hashether_t* ether);
336WS_DLL_PUBLIC
bool get_hash_ether_used(
hashether_t* ether);
337WS_DLL_PUBLIC
char* get_hash_ether_hexaddr(
hashether_t* ether);
338WS_DLL_PUBLIC
char* get_hash_ether_resolved_name(
hashether_t* ether);
340WS_DLL_PUBLIC
bool get_hash_manuf_used(
hashmanuf_t* manuf);
341WS_DLL_PUBLIC
char* get_hash_manuf_resolved_name(
hashmanuf_t* manuf);
343WS_DLL_PUBLIC
bool get_hash_wka_used(
hashwka_t* wka);
344WS_DLL_PUBLIC
char* get_hash_wka_resolved_name(
hashwka_t* wka);
347WS_DLL_PUBLIC
void add_ipv4_name(
const unsigned addr,
const char *
name,
const bool static_entry);
350WS_DLL_PUBLIC
void add_ipv6_name(
const ws_in6_addr *addr,
const char *
name,
const bool static_entry);
364WS_DLL_PUBLIC
bool add_ip_name_from_string (
const char *addr,
const char *
name);
367WS_DLL_PUBLIC
resolved_name_t* get_edited_resolved_name(
const char* addr);
379extern void add_ether_byip(
const unsigned ip,
const uint8_t *eth);
439void set_resolution_synchrony(
bool synchronous);
446void name_resolver_init(
void);
450void host_name_lookup_reset(
void);
453void addr_resolv_init(
void);
456void addr_resolv_cleanup(
void);
459bool str_to_ip(
const char *str,
void *dst);
462bool str_to_ip6(
const char *str,
void *dst);
465bool str_to_eth(
const char *str,
char *eth_bytes);
468unsigned ipv6_oat_hash(
const void *key);
471gboolean ipv6_equal(
const void *v1,
const void *v2);
WS_DLL_PUBLIC bool host_name_lookup_process(void)
Definition addr_resolv.c:3325
WS_DLL_PUBLIC bool get_host_ipaddr6(const char *host, ws_in6_addr *addrp)
Definition addr_resolv.c:4018
WS_DLL_PUBLIC bool get_host_ipaddr(const char *host, uint32_t *addrp)
Definition addr_resolv.c:3953
WS_DLL_PUBLIC addrinfo_lists_t * get_addrinfo_list(void)
Definition addr_resolv.c:2847
WS_DLL_PUBLIC bool add_hosts_file(const char *hosts_file)
Definition addr_resolv.c:2723
struct _e_addr_resolve e_addr_resolve
Flags to control name resolution.
Flags to control name resolution.
Definition addr_resolv.h:52
bool dns_pkt_addr_resolution
Definition addr_resolv.h:56
bool maxmind_geoip
Definition addr_resolv.h:61
bool ss7pc_name
Definition addr_resolv.h:60
bool use_external_net_name_resolver
Definition addr_resolv.h:58
bool handshake_sni_addr_resolution
Definition addr_resolv.h:57
bool transport_name
Definition addr_resolv.h:55
bool mac_name
Definition addr_resolv.h:53
bool network_name
Definition addr_resolv.h:54
bool vlan_name
Definition addr_resolv.h:59
Definition addr_resolv.h:88
Definition wmem_allocator.h:27
Definition inet_addr.h:21
Definition addr_resolv.c:162
Definition addr_resolv.c:174
Definition addr_resolv.c:169
Definition prefs-int.h:27
const char * name
Definition prefs-int.h:28
Definition addr_resolv.h:79
Definition tvbuff-int.h:35