module Async::HTTP::Protocol::HTTP1

def self.server(stream)

TODO Verify correct behaviour.
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