Home | History | Annotate | Download | only in conn

Lines Matching defs:route

52  * {@link HttpRoute route} established.
53 * The adapter delegates methods for establishing the route to
58 * underlying connection and the established route.
82 /** The route for which this entry gets allocated. */
86 protected volatile HttpRoute route;
91 /** The tracked route, or <code>null</code> before tracking starts. */
99 * @param route the planned route for the connection,
103 HttpRoute route) {
110 this.route = route;
135 * @param route the route along which to open the connection
141 public void open(HttpRoute route,
145 if (route == null) {
147 ("Route must not be null.");
164 //@@@ verify route against planned route?
166 this.tracker = new RouteTracker(route);
167 final HttpHost proxy = route.getProxyHost();
171 (proxy != null) ? proxy : route.getTargetHost(),
172 route.getLocalAddress(),
211 //@@@ check for proxy in planned route?
256 //@@@ check for proxy in planned route?