aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-24 02:50:32 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-24 02:50:32 +0000
commitf24dd32af5d644e326b309774d5f0368a1bddada (patch)
tree741d9cbae5a289c7b4975fe6c827253382af179e /epan/to_str.h
parentb566737220842b2d6a521582436c79ed56460d9a (diff)
Add a new function address_to_str to to_str.c
Implement conersion from address to string for IPv4 and IPv6 and update the conversation tables to use the new interface. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8234 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index df0e68be79..d04e708026 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -1,7 +1,7 @@
/* to_str.h
* Definitions for utilities to convert various other types to strings.
*
- * $Id: to_str.h,v 1.17 2003/08/24 01:06:21 guy Exp $
+ * $Id: to_str.h,v 1.18 2003/08/24 02:50:31 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -46,6 +46,7 @@ typedef enum {
struct e_in6_addr;
+extern gchar* address_to_str(address *);
extern gchar* ether_to_str(const guint8 *);
extern gchar* ip_to_str(const guint8 *);
extern void ip_to_str_buf(const guint8 *, gchar *);