diff options
Diffstat (limited to 'other/ssharp/openbsd-compat/fake-getaddrinfo.h')
| -rw-r--r-- | other/ssharp/openbsd-compat/fake-getaddrinfo.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/other/ssharp/openbsd-compat/fake-getaddrinfo.h b/other/ssharp/openbsd-compat/fake-getaddrinfo.h new file mode 100644 index 0000000..dbc398e --- /dev/null +++ b/other/ssharp/openbsd-compat/fake-getaddrinfo.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* $Id: fake-getaddrinfo.h,v 1.1.1.1 2001/09/19 14:44:59 stealth Exp $ */ | ||
| 2 | |||
| 3 | #ifndef _FAKE_GETADDRINFO_H | ||
| 4 | #define _FAKE_GETADDRINFO_H | ||
| 5 | |||
| 6 | #include "config.h" | ||
| 7 | |||
| 8 | #include "fake-gai-errnos.h" | ||
| 9 | |||
| 10 | #ifndef AI_PASSIVE | ||
| 11 | # define AI_PASSIVE 1 | ||
| 12 | # define AI_CANONNAME 2 | ||
| 13 | #endif | ||
| 14 | |||
| 15 | #ifndef NI_NUMERICHOST | ||
| 16 | # define NI_NUMERICHOST 2 | ||
| 17 | # define NI_NAMEREQD 4 | ||
| 18 | # define NI_NUMERICSERV 8 | ||
| 19 | #endif | ||
| 20 | |||
| 21 | #ifndef HAVE_STRUCT_ADDRINFO | ||
| 22 | struct addrinfo { | ||
| 23 | int ai_flags; /* AI_PASSIVE, AI_CANONNAME */ | ||
| 24 | int ai_family; /* PF_xxx */ | ||
| 25 | int ai_socktype; /* SOCK_xxx */ | ||
| 26 | int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */ | ||
| 27 | size_t ai_addrlen; /* length of ai_addr */ | ||
| 28 | char *ai_canonname; /* canonical name for hostname */ | ||
| 29 | struct sockaddr *ai_addr; /* binary address */ | ||
| 30 | struct addrinfo *ai_next; /* next structure in linked list */ | ||
| 31 | }; | ||
| 32 | #endif /* !HAVE_STRUCT_ADDRINFO */ | ||
| 33 | |||
| 34 | #ifndef HAVE_GETADDRINFO | ||
| 35 | int getaddrinfo(const char *hostname, const char *servname, | ||
| 36 | const struct addrinfo *hints, struct addrinfo **res); | ||
| 37 | #endif /* !HAVE_GETADDRINFO */ | ||
| 38 | |||
| 39 | #ifndef HAVE_GAI_STRERROR | ||
| 40 | char *gai_strerror(int ecode); | ||
| 41 | #endif /* !HAVE_GAI_STRERROR */ | ||
| 42 | |||
| 43 | #ifndef HAVE_FREEADDRINFO | ||
| 44 | void freeaddrinfo(struct addrinfo *ai); | ||
| 45 | #endif /* !HAVE_FREEADDRINFO */ | ||
| 46 | |||
| 47 | #endif /* _FAKE_GETADDRINFO_H */ | ||
