All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.littleshoot.proxy.HostResolver Maven / Gradle / Ivy

package org.littleshoot.proxy;

import java.net.InetSocketAddress;
import java.net.UnknownHostException;

/**
 * Resolves host and port into an InetSocketAddress.
 */
public interface HostResolver {
    public InetSocketAddress resolve(String host, int port)
            throws UnknownHostException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy