Home | History | Annotate | Download | only in routing

Lines Matching refs:hop

69     /** Whether the first hop of the route is established. */
245 public final HttpHost getHopTarget(int hop) {
246 if (hop < 0)
248 ("Hop index must not be negative: " + hop);
250 if (hop >= hopcount) {
252 ("Hop index " + hop +
257 if (hop < hopcount-1)
258 result = this.proxyChain[hop];