Class ConnRouteParams

    • Field Detail

      • NO_HOST

        public static final HttpHost NO_HOST
        Deprecated.
        A special value indicating "no host". This relies on a nonsense scheme name to avoid conflicts with actual hosts. Note that this is a valid host.
      • NO_ROUTE

        public static final HttpRoute NO_ROUTE
        Deprecated.
        A special value indicating "no route". This is a route with NO_HOST as the target.
    • Method Detail

      • getDefaultProxy

        public static HttpHost getDefaultProxy​(HttpParams params)
        Deprecated.
        Obtains the DEFAULT_PROXY parameter value. NO_HOST will be mapped to null, to allow unsetting in a hierarchy.
        Parameters:
        params - the parameters in which to look up
        Returns:
        the default proxy set in the argument parameters, or null if not set
      • getForcedRoute

        public static HttpRoute getForcedRoute​(HttpParams params)
        Deprecated.
        Obtains the FORCED_ROUTE parameter value. NO_ROUTE will be mapped to null, to allow unsetting in a hierarchy.
        Parameters:
        params - the parameters in which to look up
        Returns:
        the forced route set in the argument parameters, or null if not set
      • getLocalAddress

        public static java.net.InetAddress getLocalAddress​(HttpParams params)
        Deprecated.
        Obtains the LOCAL_ADDRESS parameter value. There is no special value that would automatically be mapped to null. You can use the wildcard address (0.0.0.0 for IPv4, :: for IPv6) to override a specific local address in a hierarchy.
        Parameters:
        params - the parameters in which to look up
        Returns:
        the local address set in the argument parameters, or null if not set
      • setLocalAddress

        public static void setLocalAddress​(HttpParams params,
                                           java.net.InetAddress local)
        Deprecated.
        Sets the LOCAL_ADDRESS parameter value.
        Parameters:
        params - the parameters in which to set the value
        local - the value to set, may be null