summaryrefslogtreecommitdiff
path: root/openbsd-compat/fake-getaddrinfo.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
commit3c06f6a0b234822c7b2d6c63ef1aaf554af7167b (patch)
tree86e5fe626cb9cbade752baf2440badfa19976200 /openbsd-compat/fake-getaddrinfo.h
parentbf75776d415126a415ac92fb767c70dc67feba4f (diff)
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
Diffstat (limited to 'openbsd-compat/fake-getaddrinfo.h')
-rw-r--r--openbsd-compat/fake-getaddrinfo.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/openbsd-compat/fake-getaddrinfo.h b/openbsd-compat/fake-getaddrinfo.h
new file mode 100644
index 000000000..7da87142d
--- /dev/null
+++ b/openbsd-compat/fake-getaddrinfo.h
@@ -0,0 +1,45 @@
1#ifndef _FAKE_GETADDRINFO_H
2#define _FAKE_GETADDRINFO_H
3
4#include "config.h"
5
6#include "fake-gai-errnos.h"
7
8#ifndef AI_PASSIVE
9# define AI_PASSIVE 1
10# define AI_CANONNAME 2
11#endif
12
13#ifndef NI_NUMERICHOST
14# define NI_NUMERICHOST 2
15# define NI_NAMEREQD 4
16# define NI_NUMERICSERV 8
17#endif
18
19#ifndef HAVE_STRUCT_ADDRINFO
20struct addrinfo {
21 int ai_flags; /* AI_PASSIVE, AI_CANONNAME */
22 int ai_family; /* PF_xxx */
23 int ai_socktype; /* SOCK_xxx */
24 int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */
25 size_t ai_addrlen; /* length of ai_addr */
26 char *ai_canonname; /* canonical name for hostname */
27 struct sockaddr *ai_addr; /* binary address */
28 struct addrinfo *ai_next; /* next structure in linked list */
29};
30#endif /* !HAVE_STRUCT_ADDRINFO */
31
32#ifndef HAVE_GETADDRINFO
33int getaddrinfo(const char *hostname, const char *servname,
34 const struct addrinfo *hints, struct addrinfo **res);
35#endif /* !HAVE_GETADDRINFO */
36
37#ifndef HAVE_GAI_STRERROR
38char *gai_strerror(int ecode);
39#endif /* !HAVE_GAI_STRERROR */
40
41#ifndef HAVE_FREEADDRINFO
42void freeaddrinfo(struct addrinfo *ai);
43#endif /* !HAVE_FREEADDRINFO */
44
45#endif /* _FAKE_GETADDRINFO_H */