Module: HTTPX::Plugins::Proxy::HTTP::ProxyParser
- Defined in:
- lib/httpx/plugins/proxy/http.rb
Instance Method Summary collapse
Instance Method Details
#join_headline(request) ⇒ Object
175 176 177 178 179 |
# File 'lib/httpx/plugins/proxy/http.rb', line 175 def join_headline(request) return super if request.verb == "CONNECT" "#{request.verb} #{request.uri} HTTP/#{@version.join(".")}" end |
#set_protocol_headers(request) ⇒ Object
181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/httpx/plugins/proxy/http.rb', line 181 def set_protocol_headers(request) extra_headers = super proxy_params = .proxy if proxy_params.scheme == "basic" # opt for basic auth extra_headers["proxy-authorization"] = proxy_params.authenticate(extra_headers) end extra_headers["proxy-connection"] = extra_headers.delete("connection") if extra_headers.key?("connection") extra_headers end |