Module: HTTPX::Plugins::Proxy::SSH::ConnectionMethods
- Defined in:
- lib/httpx/plugins/proxy/ssh.rb
Instance Method Summary collapse
-
#coalescable? ⇒ Boolean
should not coalesce connections here, as the IP is the IP of the proxy.
- #match?(uri, options) ⇒ Boolean
Instance Method Details
#coalescable? ⇒ Boolean
should not coalesce connections here, as the IP is the IP of the proxy
85 86 87 88 89 |
# File 'lib/httpx/plugins/proxy/ssh.rb', line 85 def coalescable?(*) return super unless @options.proxy false end |
#match?(uri, options) ⇒ Boolean
78 79 80 81 82 |
# File 'lib/httpx/plugins/proxy/ssh.rb', line 78 def match?(uri, ) return super unless @options.proxy super && @options.proxy == .proxy end |