# File lib/httpclient/session.rb, line 35
    def initialize(uri = nil)
      if uri
        @scheme = uri.scheme
        @host = uri.host
        @port = uri.port.to_i
      else
        @scheme = 'tcp'
        @host = '0.0.0.0'
        @port = 0
      end
    end