Public Class methods
new(uri, options)
[show source]
# File lib/httpx/plugins/proxy/http.rb 199 def initialize(uri, options) 200 super("CONNECT", uri, options) 201 @headers.delete("accept") 202 end
Public Instance methods
path()
[show source]
# File lib/httpx/plugins/proxy/http.rb 204 def path 205 "#{@uri.hostname}:#{@uri.port}" 206 end