module Async::HTTP::Protocol::HTTP1
def self.client(peer, **options)
@parameter peer [IO] The peer to communicate with.
Create a client for an outbound connection.
def self.client(peer, **options) stream = ::IO::Stream(peer) return HTTP1::Client.new(stream, VERSION, **options) end