aboutsummaryrefslogtreecommitdiffstats
path: root/epan/addr_resolv.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-04 21:40:05 -0500
committerMichael Mann <mmann78@netscape.net>2015-01-05 13:55:04 +0000
commit22b4ec91c006fec65e655ccbb0dbbc32438f820b (patch)
tree033dc9de28b8a79550a4dd769fcfb249df4be38c /epan/addr_resolv.c
parent9a7318a184e25e08d1c8449e3f826e0a5c66ca3b (diff)
Replace ep_display_to_address with wmem equivalent display_to_address.
Almost all instances require using "manual" memory management, but it gets some ep_ calls out of the GUI. Change-Id: Ifa7303766b08d09442ccf3d7063cbe061578ecd9 Reviewed-on: https://code.wireshark.org/review/6318 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/addr_resolv.c')
-rw-r--r--epan/addr_resolv.c32
1 files changed, 1 insertions, 31 deletions
diff --git a/epan/addr_resolv.c b/epan/addr_resolv.c
index f78b6f7044..e352952cd9 100644
--- a/epan/addr_resolv.c
+++ b/epan/addr_resolv.c
@@ -2882,28 +2882,7 @@ ep_sctp_port_to_display(guint port)
} /* ep_sctp_port_to_display */
const gchar *
-ep_address_to_display(const address *addr)
-{
- const gchar *result;
-
- result = solve_address_to_name(addr);
-
- if (result != NULL)
- return result;
-
- /* if it gets here, either it is of type AT_NONE, */
- /* or it should be solvable in address_to_str -unless addr->type is wrongly defined */
-
- if (addr->type == AT_NONE){
- return "NONE";
- }
-
- /* We need an ephemeral allocated string */
- return ep_address_to_str(addr);
-}
-
-const gchar *
-wmem_address_to_display(wmem_allocator_t *allocator, const address *addr)
+address_to_display(wmem_allocator_t *allocator, const address *addr)
{
gchar *str = NULL;
const gchar *result = solve_address_to_name(addr);
@@ -2955,15 +2934,6 @@ get_addr_name(const address *addr)
}
}
-void
-get_addr_name_buf(const address *addr, gchar *buf, gsize size)
-{
- const gchar *result = ep_address_to_display(addr);
-
- g_strlcpy(buf, result, size);
-} /* get_addr_name_buf */
-
-
gchar *
get_ether_name(const guint8 *addr)
{