Searched refs:TunnelType (Results 1 – 3 of 3) sorted by relevance
/external/apache-http/src/org/apache/http/conn/routing/ |
D | HttpRoute.java | 66 private final TunnelType tunnelled; 98 TunnelType tunnelled, LayerType layered) { in HttpRoute() 103 if ((tunnelled == TunnelType.TUNNELLED) && (proxies == null)) { in HttpRoute() 110 tunnelled = TunnelType.PLAIN; in HttpRoute() 137 boolean secure, TunnelType tunnelled, LayerType layered) { in HttpRoute() 160 boolean secure, TunnelType tunnelled, LayerType layered) { in HttpRoute() 176 this(local, target, null, secure, TunnelType.PLAIN, LayerType.PLAIN); in HttpRoute() 186 this(null, target, null, false, TunnelType.PLAIN, LayerType.PLAIN); in HttpRoute() 206 secure ? TunnelType.TUNNELLED : TunnelType.PLAIN, in HttpRoute() 303 public final TunnelType getTunnelType() { in getTunnelType() [all …]
|
D | RouteTracker.java | 71 private TunnelType tunnelled; 94 this.tunnelled = TunnelType.PLAIN; in RouteTracker() 159 this.tunnelled = TunnelType.TUNNELLED; in tunnelTarget() 274 public final TunnelType getTunnelType() { in getTunnelType() 281 return (this.tunnelled == TunnelType.TUNNELLED); in isTunnelled() 412 if (this.tunnelled == TunnelType.TUNNELLED) in toString()
|
D | RouteInfo.java | 60 public enum TunnelType { PLAIN, TUNNELLED } enum 145 TunnelType getTunnelType() in getTunnelType()
|