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

org.littleshoot.stun.stack.message.attributes.StunAddressAttribute Maven / Gradle / Ivy

The newest version!
package org.littleshoot.stun.stack.message.attributes;

import java.net.InetSocketAddress;

/**
 * Interface for STUN address attributes.
 */
public interface StunAddressAttribute extends StunAttribute
    {
    
    /**
     * Accessor for the address and port in the address.
     * 
     * @return The address and port.
     */
    InetSocketAddress getInetSocketAddress();

    /**
     * Accessor for the family of the address.
     * 
     * @return The family of the address, either IPv4 or IPv6.
     */
    int getAddressFamily();

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy