Home | History | Annotate | Download | only in routing

Lines Matching refs:proxies

86      * @param proxies   the proxy chain to use, or
96 HttpHost target, HttpHost[] proxies,
103 if ((tunnelled == TunnelType.TUNNELLED) && (proxies == null)) {
116 this.proxyChain = proxies;
129 * @param proxies the proxy chain to use, or
136 public HttpRoute(HttpHost target, InetAddress local, HttpHost[] proxies,
138 this(local, target, toChain(proxies), secure, tunnelled, layered);
234 * @param proxies the proxy chain to duplicate, or <code>null</code>
238 private static HttpHost[] toChain(HttpHost[] proxies) {
239 if ((proxies == null) || (proxies.length < 1))
242 for (HttpHost proxy : proxies) {
249 HttpHost[] result = new HttpHost[proxies.length];
250 System.arraycopy(proxies, 0, result, 0, proxies.length);
358 // comparison of actual proxies follows below
364 // chain length has been compared above, now check the proxies