Sha256: f3a42a9f262a944f6930a7471b4e50642b3d1442292bff95dd9596e89307d240

Contents?: true

Size: 653 Bytes

Versions: 4

Compression:

Stored size: 653 Bytes

Contents

# frozen_string_literal: true
# Example application that echoes read data back to the HTTP client.
# This emulates the old echo protocol people used to run.
#
# An example of using this in a client would be to run:
#   curl --no-buffer -T- http://host:port/
#
# Then type random stuff in your terminal to watch it get echoed back!

class EchoBody < Struct.new(:input)

  def each(&block)
    while buf = input.read(4096)
      yield buf
    end
    self
  end

end

run lambda { |env|
  /\A100-continue\z/i =~ env['HTTP_EXPECT'] and return [100, {}, []]
  [ 200, { 'content-type' => 'application/octet-stream' },
    EchoBody.new(env['rack.input']) ]
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pitchfork-0.16.0 examples/echo.ru
pitchfork-0.15.0 examples/echo.ru
pitchfork-0.14.0 examples/echo.ru
pitchfork-0.13.0 examples/echo.ru