Home | History | Annotate | Download | only in routing

Lines Matching refs:proxies

91      * @param proxies   the proxy chain to use, or
101 HttpHost target, HttpHost[] proxies,
108 if ((tunnelled == TunnelType.TUNNELLED) && (proxies == null)) {
121 this.proxyChain = proxies;
134 * @param proxies the proxy chain to use, or
141 public HttpRoute(HttpHost target, InetAddress local, HttpHost[] proxies,
143 this(local, target, toChain(proxies), secure, tunnelled, layered);
239 * @param proxies the proxy chain to duplicate, or <code>null</code>
243 private static HttpHost[] toChain(HttpHost[] proxies) {
244 if ((proxies == null) || (proxies.length < 1))
247 for (HttpHost proxy : proxies) {
254 HttpHost[] result = new HttpHost[proxies.length];
255 System.arraycopy(proxies, 0, result, 0, proxies.length);
363 // comparison of actual proxies follows below
369 // chain length has been compared above, now check the proxies