Home | History | Annotate | Download | only in routing

Lines Matching refs:hop

64     /** Whether the first hop of the route is established. */
240 public final HttpHost getHopTarget(int hop) {
241 if (hop < 0)
243 ("Hop index must not be negative: " + hop);
245 if (hop >= hopcount) {
247 ("Hop index " + hop +
252 if (hop < hopcount-1)
253 result = this.proxyChain[hop];