test_socket_helper: Socket#bind may fail with EINVAL if IPv6 is missing
[unicorn.git] / test / benchmark / stack.ru
blobfc9193fac8590794255ec1926b9af56a76fd4072
1 run(lambda { |env|
2   body = "#{caller.size}\n"
3   h = {
4     "Content-Length" => body.size.to_s,
5     "Content-Type" => "text/plain",
6   }
7   [ 200, h, [ body ] ]
8 })