Net::HTTP::ProxyMod (Module)

In: openssl/lib/net/https.rb

Methods

edit_path  

Public Instance methods

[Source]

# File openssl/lib/net/https.rb, line 127
      def edit_path( path )
        if use_ssl
          'https://' + addr_port + path
        else
          'http://' + addr_port + path
        end
      end

[Validate]