unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 79685c407b5d7615ec60b774621b655f6a723387 375 bytes (raw)
$ git show v3.4.0:t/preread_input.ru	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 
#\-E none
require 'digest/sha1'
require 'unicorn/preread_input'
use Rack::ContentLength
use Rack::ContentType, "text/plain"
use Unicorn::PrereadInput
nr = 0
run lambda { |env|
  $stderr.write "app dispatch: #{nr += 1}\n"
  input = env["rack.input"]
  dig = Digest::SHA1.new
  while buf = input.read(16384)
    dig.update(buf)
  end

  [ 200, {}, [ "#{dig.hexdigest}\n" ] ]
}

git clone https://yhbt.net/unicorn.git