class Async::HTTP::Server

def initialize(app, endpoint, protocol = endpoint.protocol, scheme = endpoint.scheme)

def initialize(app, endpoint, protocol = endpoint.protocol, scheme = endpoint.scheme)
	super(app)
	
	@endpoint = endpoint
	@protocol = protocol
	@scheme = scheme
end