1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

getaddrinfo.c: ai_errlist

* ext/socket/getaddrinfo.c (ai_errlist): used only if gai_strerror
  is missing.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-01-23 15:31:21 +00:00
parent 813a206d56
commit fb6c4ca168

View file

@ -149,6 +149,7 @@ static int get_addr __P((const char *, int, struct addrinfo **,
struct addrinfo *, int)); struct addrinfo *, int));
static int str_isnumber __P((const char *)); static int str_isnumber __P((const char *));
#ifndef HAVE_GAI_STRERROR
static const char *const ai_errlist[] = { static const char *const ai_errlist[] = {
"success.", "success.",
"address family for hostname not supported.", /* EAI_ADDRFAMILY */ "address family for hostname not supported.", /* EAI_ADDRFAMILY */
@ -166,6 +167,7 @@ static const char *const ai_errlist[] = {
"resolved protocol is unknown.", /* EAI_PROTOCOL */ "resolved protocol is unknown.", /* EAI_PROTOCOL */
"unknown error.", /* EAI_MAX */ "unknown error.", /* EAI_MAX */
}; };
#endif
#define GET_CANONNAME(ai, str) \ #define GET_CANONNAME(ai, str) \
if (pai->ai_flags & AI_CANONNAME) {\ if (pai->ai_flags & AI_CANONNAME) {\