Searched refs:proxyChain (Results 1 – 2 of 2) sorted by relevance
73 private HttpHost[] proxyChain; field in RouteTracker146 this.proxyChain = new HttpHost[]{ proxy }; in connectProxy()161 if (this.proxyChain == null) { in tunnelTarget()185 if (this.proxyChain == null) { in tunnelProxy()190 HttpHost[] proxies = new HttpHost[this.proxyChain.length+1]; in tunnelProxy()191 System.arraycopy(this.proxyChain, 0, in tunnelProxy()192 proxies, 0, this.proxyChain.length); in tunnelProxy()195 this.proxyChain = proxies; in tunnelProxy()235 if (proxyChain == null) in getHopCount()238 hops = proxyChain.length + 1; in getHopCount()[all …]
68 private final HttpHost[] proxyChain; field in HttpRoute121 this.proxyChain = proxies; in HttpRoute()276 return (proxyChain == null) ? 1 : (proxyChain.length+1); in getHopCount()293 result = this.proxyChain[hop]; in getHopTarget()303 return (this.proxyChain == null) ? null : this.proxyChain[0]; in getProxyHost()359 ( this.proxyChain == that.proxyChain) || in equals()360 ((this.proxyChain != null) && in equals()361 (that.proxyChain != null) && in equals()362 (this.proxyChain.length == that.proxyChain.length)); in equals()370 if (equal && (this.proxyChain != null)) { in equals()[all …]