From Fulko Hew via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4615 :
[obnox/wireshark/wip.git] / epan / atalk-utils.h
index 258d1f8392059253aba143bde619cf95f68123b3..3343561bdd42a1e6e5fbb4e1a3fc49ce2f1be785 100644 (file)
@@ -1,18 +1,18 @@
 /* atalk-utils.h
  * Definitions for Appletalk utilities (DDP, currently).
  *
- * $Id: atalk-utils.h,v 1.1 2001/03/22 16:24:16 gram Exp $
+ * $Id$
  *
  * 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
  * of the License, or (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include <glib.h>
 #include <stdio.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
 /*
  * Structure used to represent a DDP address; gives the layout of the
  * data pointed to by an AT_ATALK "address" structure.
@@ -30,7 +35,6 @@
 struct atalk_ddp_addr {
        guint16 net;
        guint8  node;
-       guint8  port;
 };
 
 /*
@@ -46,8 +50,14 @@ struct atalk_ddp_addr {
 #define DDP_EIGRP      0x58
 
 /*
- * Routine to take a DDP address and generate a string.
+ * Routines to take a DDP address and generate a string.
  */
 extern gchar *atalk_addr_to_str(const struct atalk_ddp_addr *addrp);
+extern void atalk_addr_to_str_buf(const struct atalk_ddp_addr *addrp,
+                                 gchar *buf, int buf_len);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
 
 #endif