about summary refs log tree commit homepage
path: root/lib/rainbows/base.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-03-28 17:35:10 -0700
committerEric Wong <normalperson@yhbt.net>2010-03-28 17:35:10 -0700
commitb04d465d65f896290d36538181d91dd264d10575 (patch)
tree6e00e4ec3421c07713da4d5678c231a5f2b19d73 /lib/rainbows/base.rb
parent12a4c53a47bb0c7bef5e2df732fa02532a969a54 (diff)
downloadrainbows-b04d465d65f896290d36538181d91dd264d10575.tar.gz
Every concurrency model does this the same way.

This removes the Rainbows::Const::LOCALHOST constant and
may break some existing apps that rely on it.
Diffstat (limited to 'lib/rainbows/base.rb')
-rw-r--r--lib/rainbows/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/base.rb b/lib/rainbows/base.rb
index a29a5bb..a9314ee 100644
--- a/lib/rainbows/base.rb
+++ b/lib/rainbows/base.rb
@@ -36,7 +36,7 @@ module Rainbows
       hp = HttpParser.new
       env = {}
       alive = true
-      remote_addr = TCPSocket === client ? client.peeraddr.last : LOCALHOST
+      remote_addr = Rainbows.addr(client)
 
       begin # loop
         while ! hp.headers(env, buf)