aboutsummaryrefslogtreecommitdiffstats
path: root/epan/osi-utils.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-26 01:00:30 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-26 01:00:30 +0000
commit73f3b08dfbd9dc98a127d086f17a3efbbf3d3c11 (patch)
treea49b6057ab98a991c02ac4988e81aff55ad133fe /epan/osi-utils.h
parent36341082c056f74b76e0605d968c04801a070793 (diff)
Create an "address_to_str_buf()" routine, called by "address_to_str()",
which fills in a caller-supplied buffer. Create "_buf()" versions of various "to_str" routines for various address types, and create a routine to map SNA FIDs to strings, and use them to finish up "address_to_str_buf()". Get rid of the declaration of "sna_fid_type_4_addr_to_str()" in "packet-sna.h", as that routine has been swallowed up in "sna_fid_to_str()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8260 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/osi-utils.h')
-rw-r--r--epan/osi-utils.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/epan/osi-utils.h b/epan/osi-utils.h
index 9480c2a43b..198c3e4821 100644
--- a/epan/osi-utils.h
+++ b/epan/osi-utils.h
@@ -1,12 +1,11 @@
/* osi-utils.h
*
- * $Id: osi-utils.h,v 1.4 2002/08/28 20:40:44 jmayer Exp $
+ * $Id: osi-utils.h,v 1.5 2003/08/26 01:00:29 guy Exp $
*
* Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -49,8 +48,10 @@
#define NSAP_IDI_GOSIP2 0x47
gchar* print_nsap_net ( const guint8 *, int );
+void print_nsap_net_buf( const guint8 *, int, gchar * );
gchar* print_area ( const guint8 *, int );
+void print_area_buf ( const guint8 *, int, gchar * );
gchar* print_system_id( const guint8 *, int );
-
+void print_system_id_buf( const guint8 *, int, gchar * );
#endif /* __OSI_UTILS_H__ */