aboutsummaryrefslogtreecommitdiffstats
path: root/epan/addr_resolv.h
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2017-07-20 03:39:09 +0100
committerJoão Valverde <j@v6e.pt>2017-07-20 19:07:13 +0000
commit55724db3db49e7ed5180305600733d6a9253c65d (patch)
tree1a8bfab41ba603029b897726c7bf04589356236b /epan/addr_resolv.h
parent543c101d4b98c947b7bfc66cac6d49d177ed4fc0 (diff)
Remove dead code for address reverse-mapping
Removed get_ipxnet_addr(), get_ether_addr(). If this feature is desired at a minimum it should use an efficent data structure (and no disk-based lookups mid-dissection). Change-Id: Ie72449c631f21f4a3d82ec435bb5e1d7892f122c Reviewed-on: https://code.wireshark.org/review/22729 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan/addr_resolv.h')
-rw-r--r--epan/addr_resolv.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/epan/addr_resolv.h b/epan/addr_resolv.h
index 79457077f3..2430fda003 100644
--- a/epan/addr_resolv.h
+++ b/epan/addr_resolv.h
@@ -283,14 +283,6 @@ WS_DLL_PUBLIC char* get_hash_ether_resolved_name(hashether_t* ether);
WS_DLL_PUBLIC char* get_hash_manuf_resolved_name(hashmanuf_t* manuf);
-/* returns the ethernet address corresponding to name or NULL if not known */
-extern guint8 *get_ether_addr(const gchar *name);
-
-/* returns the ipx network corresponding to name. If name is unknown,
- * 0 is returned and 'known' is set to FALSE. On success, 'known'
- * is set to TRUE. */
-guint32 get_ipxnet_addr(const gchar *name, gboolean *known);
-
/* adds a hostname/IPv4 in the hash table */
WS_DLL_PUBLIC void add_ipv4_name(const guint addr, const gchar *name);