(Trivial) Escape a '?' in an error message.
[obnox/wireshark/wip.git] / inet_v6defs.h
1 /* inet_v6defs.h
2  *
3  * $Id$
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.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 #ifndef __INET_V6DEFS_H__
25 #define __INET_V6DEFS_H__
26
27 /*
28  * Versions of "inet_pton()" and "inet_ntop()", for the benefit of OSes that
29  * don't have it.
30  */
31 extern int inet_pton(int af, const char *src, void *dst);
32 #ifndef HAVE_INET_NTOP_PROTO
33 extern const char *inet_ntop(int af, const void *src, char *dst,
34     size_t size);
35 #endif
36
37 /*
38  * Those OSes may also not have AF_INET6, so declare it here if it's not
39  * already declared, so that we can pass it to "inet_ntop()" and "inet_pton()".
40  */
41 #ifndef AF_INET6
42 #define AF_INET6        127     /* pick a value unlikely to duplicate an existing AF_ value */
43 #endif
44
45 /*
46  * And if __P isn't defined, define it here, so we can use it in
47  * "inet_ntop.c" and "inet_pton.c" (rather than having to change them
48  * not to use it).
49  */
50 #ifndef __P
51 #define __P(args)       args
52 #endif
53
54 #endif