class Protocol::HTTP::Peer

def initialize(address)

@parameter address [Addrinfo] The remote address of the peer.

Initialize the peer with the given address.
def initialize(address)
	@address = address
	
	if address.ip?
		@ip_address = @address.ip_address
	end
end