mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/webrick/server.rb (WEBrick::HTTPServer#start):
:DoNotReverseLookup option had not been performed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
251dec5cf1
commit
a5505ab833
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Jan 9 13:45:52 2008 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* lib/webrick/server.rb (WEBrick::HTTPServer#start):
|
||||
:DoNotReverseLookup option had not been performed.
|
||||
|
||||
Wed Jan 9 13:03:34 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* string.c (rb_enc_cr_str_buf_cat): do not recalculate coderange
|
||||
|
|
|
@ -91,6 +91,7 @@ module WEBrick
|
|||
svrs[0].each{|svr|
|
||||
@tokens.pop # blocks while no token is there.
|
||||
if sock = accept_client(svr)
|
||||
sock.do_not_reverse_lookup = config[:DoNotReverseLookup]
|
||||
th = start_thread(sock, &block)
|
||||
th[:WEBrickThread] = true
|
||||
thgroup.add(th)
|
||||
|
|
Loading…
Add table
Reference in a new issue