ruby-changes:43887
From: nagachika <ko1@a...>
Date: Thu, 18 Aug 2016 23:26:41 +0900 (JST)
Subject: [ruby-changes:43887] nagachika:r55960 (ruby_2_3): merge revision(s) 55797: [Backport #12645]
nagachika 2016-08-18 23:26:36 +0900 (Thu, 18 Aug 2016) New Revision: 55960 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55960 Log: merge revision(s) 55797: [Backport #12645] * ext/socket/option.c, ext/socket/rubysocket.h (inet_ntop): share the fallback definition. [ruby-core:76646] [Bug #12645] Modified directories: branches/ruby_2_3/ Modified files: branches/ruby_2_3/ChangeLog branches/ruby_2_3/ext/socket/getnameinfo.c branches/ruby_2_3/ext/socket/option.c branches/ruby_2_3/ext/socket/rubysocket.h branches/ruby_2_3/version.h Index: ruby_2_3/ChangeLog =================================================================== --- ruby_2_3/ChangeLog (revision 55959) +++ ruby_2_3/ChangeLog (revision 55960) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1 +Thu Aug 18 23:18:17 2016 Nobuyoshi Nakada <nobu@r...> + + * ext/socket/option.c, ext/socket/rubysocket.h (inet_ntop): share + the fallback definition. [ruby-core:76646] [Bug #12645] + Thu Aug 18 23:07:29 2016 Nobuyoshi Nakada <nobu@r...> * vm.c (vm_set_main_stack): remove unnecessary check. toplevel Index: ruby_2_3/version.h =================================================================== --- ruby_2_3/version.h (revision 55959) +++ ruby_2_3/version.h (revision 55960) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1 #define RUBY_VERSION "2.3.2" #define RUBY_RELEASE_DATE "2016-08-18" -#define RUBY_PATCHLEVEL 171 +#define RUBY_PATCHLEVEL 172 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 8 Index: ruby_2_3/ext/socket/getnameinfo.c =================================================================== --- ruby_2_3/ext/socket/getnameinfo.c (revision 55959) +++ ruby_2_3/ext/socket/getnameinfo.c (revision 55960) @@ -117,24 +117,6 @@ static struct afd { https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ext/socket/getnameinfo.c#L117 #define ENI_FAMILY 5 #define ENI_SALEN 6 -#ifndef HAVE_INET_NTOP -static const char * -inet_ntop(int af, const void *addr, char *numaddr, size_t numaddr_len) -{ -#ifdef HAVE_INET_NTOA - struct in_addr in; - memcpy(&in.s_addr, addr, sizeof(in.s_addr)); - snprintf(numaddr, numaddr_len, "%s", inet_ntoa(in)); -#else - unsigned long x = ntohl(*(unsigned long*)addr); - snprintf(numaddr, numaddr_len, "%d.%d.%d.%d", - (int) (x>>24) & 0xff, (int) (x>>16) & 0xff, - (int) (x>> 8) & 0xff, (int) (x>> 0) & 0xff); -#endif - return numaddr; -} -#endif - int getnameinfo(const struct sockaddr *sa, socklen_t salen, char *host, socklen_t hostlen, char *serv, socklen_t servlen, int flags) { Index: ruby_2_3/ext/socket/rubysocket.h =================================================================== --- ruby_2_3/ext/socket/rubysocket.h (revision 55959) +++ ruby_2_3/ext/socket/rubysocket.h (revision 55960) @@ -430,4 +430,12 @@ static inline void rsock_maybe_wait_fd(i https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ext/socket/rubysocket.h#L430 # define MSG_DONTWAIT_RELIABLE 0 #endif +#if !defined HAVE_INET_NTOP && ! defined _WIN32 +const char *inet_ntop(int, const void *, char *, size_t); +#elif defined __MINGW32__ +# define inet_ntop(f,a,n,l) rb_w32_inet_ntop(f,a,n,l) +#elif defined _MSC_VER && RUBY_MSVCRT_VERSION < 90 +const char *WSAAPI inet_ntop(int, const void *, char *, size_t); +#endif + #endif Index: ruby_2_3/ext/socket/option.c =================================================================== --- ruby_2_3/ext/socket/option.c (revision 55959) +++ ruby_2_3/ext/socket/option.c (revision 55960) @@ -645,7 +645,7 @@ inspect_timeval_as_interval(int level, i https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ext/socket/option.c#L645 */ #if !defined HAVE_INET_NTOP && ! defined _WIN32 -static const char * +const char * inet_ntop(int af, const void *addr, char *numaddr, size_t numaddr_len) { #ifdef HAVE_INET_NTOA @@ -660,10 +660,6 @@ inet_ntop(int af, const void *addr, char https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ext/socket/option.c#L660 #endif return numaddr; } -#elif defined __MINGW32__ -# define inet_ntop(f,a,n,l) rb_w32_inet_ntop(f,a,n,l) -#elif defined _MSC_VER && RUBY_MSVCRT_VERSION < 90 -const char *WSAAPI inet_ntop(int, const void *, char *, size_t); #endif /* Although the buffer size needed depends on the prefixes, "%u" may generate "4294967295". */ Property changes on: ruby_2_3 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r55797 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/