Make infiniband plugin compile.
[obnox/wireshark/wip.git] / inet_v6defs.h
index 91e86ad8c4c4f8424aedda83801f096c5b502f28..dc770f89c5e24e4f08d87cb80a203b8d4ce1d9b3 100644 (file)
@@ -1,36 +1,38 @@
-/* inet_pton.h
+/* inet_v6defs.h
  *
- * $Id: inet_v6defs.h,v 1.2 2000/01/10 17:32:51 gram Exp $
+ * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * 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
  * 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.
  */
 
+#ifndef __INET_V6DEFS_H__
+#define __INET_V6DEFS_H__
+
 /*
- * Version of "inet_pton()" and "inet_ntop()", for the benefit of OSes that
+ * Versions of "inet_pton()" and "inet_ntop()", for the benefit of OSes that
  * don't have it.
  */
 extern int inet_pton(int af, const char *src, void *dst);
+#ifndef HAVE_INET_NTOP_PROTO
 extern const char *inet_ntop(int af, const void *src, char *dst,
     size_t size);
-
-struct in_addr;
-extern int inet_aton(const char* cp_arg, struct in_addr *addr);
+#endif
 
 /*
  * Those OSes may also not have AF_INET6, so declare it here if it's not
@@ -48,3 +50,5 @@ extern int inet_aton(const char* cp_arg, struct in_addr *addr);
 #ifndef __P
 #define __P(args)      args
 #endif
+
+#endif