* libs/httpd: cleanup
authorSteven Barth <steven@midlink.org>
Wed, 25 Jun 2008 17:13:59 +0000 (17:13 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 25 Jun 2008 17:13:59 +0000 (17:13 +0000)
libs/httpd/luasrc/httpd/server.lua

index 1b54b30f214f759898b5294711fedd253350648b..57221647fceba2893a98e255a601a00f4c0f81d3 100644 (file)
@@ -119,8 +119,6 @@ function Server.process( self, thread )
        local reading = { client }
 
        local message, err
-
-       socket.sleep(5)
        
        repeat
                -- parse headers
@@ -131,8 +129,6 @@ function Server.process( self, thread )
                        break
                end     
                
-               coroutine.yield()
-               
                -- keep-alive
                if message.http_version == 1.1 then
                        close = (message.env.HTTP_CONNECTION == "close")
@@ -176,8 +172,6 @@ function Server.process( self, thread )
                        break;
                end
                
-               coroutine.yield()
-               
                local response, sourceout = host:process(
                        message, sourcein, sinkerr,
                        client, io.stderr 
@@ -186,8 +180,6 @@ function Server.process( self, thread )
                        self:error( client, 500, "Error processing handler" )
                end
                
-               coroutine.yield()
-               
                -- Post process response
                local sinkmode = close and "close-when-done" or "keep-open"