Package org.apache.http.conn.routing.RouteInfo

Examples of org.apache.http.conn.routing.RouteInfo.TunnelType


        if (defaultProxyHosts != null && defaultProxyHosts.length > 0)
        {
            HttpHost targetHost = route.getTargetHost();
            InetAddress local = route.getLocalAddress();
            boolean secure = route.isSecure();
            TunnelType tunnelType = route.getTunnelType();
            LayerType layerType = route.getLayerType();
            route = new HttpRoute(targetHost, local, defaultProxyHosts, secure, tunnelType, layerType);
        }
       
        return route;
View Full Code Here

TOP

Related Classes of org.apache.http.conn.routing.RouteInfo.TunnelType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.