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

org.lastbamboo.common.ice.MappedServerSocket Maven / Gradle / Ivy

package org.lastbamboo.common.ice;

import java.net.InetSocketAddress;

/**
 * Interface for server sockets that have their ports mapped.
 */
public interface MappedServerSocket {

    boolean isPortMapped();
    
    int getMappedPort();

    InetSocketAddress getHostAddress();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy