Home | History | Annotate | Download | only in routing

Lines Matching refs:TUNNELLED

70     /** Whether the the route is tunnelled through the proxy. */
71 private final TunnelType tunnelled;
95 * @param tunnelled the tunnel type of this route, or
103 TunnelType tunnelled, LayerType layered) {
108 if ((tunnelled == TunnelType.TUNNELLED) && (proxies == null)) {
110 ("Proxy required if tunnelled.");
113 // tunnelled is already checked above, that is in line with the default
114 if (tunnelled == null)
115 tunnelled = TunnelType.PLAIN;
123 this.tunnelled = tunnelled;
138 * @param tunnelled the tunnel type of this route
142 boolean secure, TunnelType tunnelled, LayerType layered) {
143 this(local, target, toChain(proxies), secure, tunnelled, layered);
157 * @param tunnelled <code>true</code> if the route is (to be) tunnelled
165 boolean secure, TunnelType tunnelled, LayerType layered) {
166 this(local, target, toChain(proxy), secure, tunnelled, layered);
211 secure ? TunnelType.TUNNELLED : TunnelType.PLAIN,
309 return this.tunnelled;
315 return (this.tunnelled == TunnelType.TUNNELLED);
366 (this.tunnelled == that.tunnelled) &&
399 hc ^= this.tunnelled.hashCode();
421 if (this.tunnelled == TunnelType.TUNNELLED)