Implement address_to_str which is like ep_address_to_str and se_address_to_str

except it takes a wmem scope instead. Add the two emem equivalents to checkAPI
as (weakly) deprecated.

svn path=/trunk/; revision=53528
This commit is contained in:
Evan Huus 2013-11-23 22:17:27 +00:00
parent df1aec4a6b
commit d97c9e2ff4
3 changed files with 17 additions and 2 deletions

View File

@ -62,6 +62,7 @@
#include <epan/dissectors/packet-mtp3.h>
#include <stdio.h>
#include "emem.h"
#include "wmem/wmem.h"
/*
* If a user _does_ pass in a too-small buffer, this is probably
@ -505,6 +506,16 @@ get_ax25_name(const guint8 *ad)
address types */
/* convert an address struct into a printable string */
gchar*
address_to_str(wmem_allocator_t *scope, const address *addr)
{
gchar *str;
str=(gchar *)wmem_alloc(scope, MAX_ADDR_STR_LEN);
address_to_str_buf(addr, str, MAX_ADDR_STR_LEN);
return str;
}
gchar*
ep_address_to_str(const address *addr)
{

View File

@ -31,6 +31,7 @@
#include "time_fmt.h"
#include <epan/packet_info.h>
#include "ws_symbol_export.h"
#include "wmem/wmem.h"
#define GUID_STR_LEN 37
#define MAX_IP_STR_LEN 16
@ -50,7 +51,8 @@ extern "C" {
struct e_in6_addr;
WS_DLL_PUBLIC gchar* ep_address_to_str(const address *);
WS_DLL_PUBLIC gchar* address_to_str(wmem_allocator_t *scope, const address *addr);
WS_DLL_PUBLIC gchar* ep_address_to_str(const address *);
extern gchar* se_address_to_str(const address *);
WS_DLL_PUBLIC void address_to_str_buf(const address *addr, gchar *buf, int buf_len);
WS_DLL_PUBLIC const gchar* ether_to_str(const guint8 *);

View File

@ -128,7 +128,7 @@ my %APIs = (
### Deprecated emem functions (use wmem instead!)
# These will become errors once they've been removed from all the
# existing dissectors
# existing code
'emem' => { 'count_errors' => 0, 'functions' => [
'ep_alloc',
'ep_new',
@ -147,6 +147,7 @@ my %APIs = (
'ep_stack_push',
'ep_stack_pop',
'ep_stack_peek',
'ep_address_to_str',
'se_alloc',
'se_new',
'se_alloc0',
@ -157,6 +158,7 @@ my %APIs = (
'se_strdup_vprintf',
'se_strdup_printf',
'se_alloc_array',
'se_address_to_str',
'se_tree_create',
'se_tree_insert32',
'se_tree_lookup32',