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

* ext/socket/socket.c: turn on do_not_reverse_lookup by default.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-01-26 07:50:53 +00:00
parent 76e9d7900d
commit 85176676e5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Jan 26 15:55:52 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/socket/socket.c: turn on do_not_reverse_lookup by default.
Wed Jan 25 22:29:04 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in, dln.c, file.c, intern.h, missing.h (eaccess): use

View file

@ -70,7 +70,7 @@
#endif
#include "sockport.h"
static int do_not_reverse_lookup = 0;
static int do_not_reverse_lookup = 1;
#define FMODE_NOREVLOOKUP 0x100
VALUE rb_cBasicSocket;