module Async::HTTP::Protocol::HTTP1
def self.client(stream)
def self.client(stream) Client.new(stream, VERSION) end
def self.server(stream)
A server that supports both HTTP1.0 and HTTP1.1 semantics by detecting the version of the request.
def self.server(stream) Server.new(stream, VERSION) end