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

org.lastbamboo.common.ice.candidate.IceUdpPeerReflexiveCandidate Maven / Gradle / Ivy

package org.lastbamboo.common.ice.candidate;

import java.net.InetSocketAddress;

import org.lastbamboo.common.ice.IceTransportProtocol;

/**
 * Peer reflexive ICE UDP candidate.
 */
public class IceUdpPeerReflexiveCandidate extends AbstractIceCandidate
    {

    /**
     * Creates a new UDP ICE candidate for the server peer candidate.
     * 
     * @param peerReflexiveAddress The address of the peer reflexive 
     * candidate.
     * @param baseCandidate The local base candidate.
     * @param controlling Whether or not this candidate is the controlling
     * candidate.
     * @param priority The priority of the candidate.
     */
    public IceUdpPeerReflexiveCandidate(
        final InetSocketAddress peerReflexiveAddress,
        final IceCandidate baseCandidate, 
        final boolean controlling, final long priority)
        {
        super(peerReflexiveAddress, 
            IceFoundationCalculator.calculateFoundation(IceCandidateType.PEER_REFLEXIVE, 
               baseCandidate.getSocketAddress().getAddress(), 
               IceTransportProtocol.UDP), 
            IceCandidateType.PEER_REFLEXIVE, 
            IceTransportProtocol.UDP, priority, controlling, 
            DEFAULT_COMPONENT_ID, baseCandidate, 
            baseCandidate.getSocketAddress().getAddress(), 
            baseCandidate.getSocketAddress().getPort());
        }
    
    /**
     * Creates a new UDP ICE candidate for the server peer candidate.
     * 
     * @param peerReflexiveAddress The address of the peer reflexive 
     * candidate.
     * @param foundation The foundation.
     * @param componentId The component ID.
     * @param controlling Whether or not this candidate is the controlling
     * candidate.
     * @param priority The priority for the candidate.
     */
    public IceUdpPeerReflexiveCandidate(
        final InetSocketAddress peerReflexiveAddress,
        final String foundation, final int componentId,
        final boolean controlling, final long priority)
        {
        super(peerReflexiveAddress, foundation, 
            IceCandidateType.PEER_REFLEXIVE, IceTransportProtocol.UDP, 
            priority, controlling, componentId, null, null, -1);
        }

    public  T accept(final IceCandidateVisitor visitor)
        {
        return visitor.visitUdpPeerReflexiveCandidate(this);
        }

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy