Itojun did part of the BSD zlib fix.
[obnox/wireshark/wip.git] / inet_v6defs.h
1 /* inet_pton.h
2  *
3  * $Id: inet_v6defs.h,v 1.2 2000/01/10 17:32:51 gram Exp $
4  *
5  * Ethereal - Network traffic analyzer
6  * By Gerald Combs <gerald@zing.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22  */
23
24 /*
25  * Version of "inet_pton()" and "inet_ntop()", for the benefit of OSes that
26  * don't have it.
27  */
28 extern int inet_pton(int af, const char *src, void *dst);
29 extern const char *inet_ntop(int af, const void *src, char *dst,
30     size_t size);
31
32 struct in_addr;
33 extern int inet_aton(const char* cp_arg, struct in_addr *addr);
34
35 /*
36  * Those OSes may also not have AF_INET6, so declare it here if it's not
37  * already declared, so that we can pass it to "inet_ntop()" and "inet_pton()".
38  */
39 #ifndef AF_INET6
40 #define AF_INET6        127     /* pick a value unlikely to duplicate an existing AF_ value */
41 #endif
42
43 /*
44  * And if __P isn't defined, define it here, so we can use it in
45  * "inet_ntop.c" and "inet_pton.c" (rather than having to change them
46  * not to use it).
47  */
48 #ifndef __P
49 #define __P(args)       args
50 #endif