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

org.lastbamboo.common.turn.client.TurnStunMessageMapper Maven / Gradle / Ivy

package org.lastbamboo.common.turn.client;

import java.net.InetSocketAddress;

import org.littleshoot.stun.stack.message.StunMessage;

/**
 * Helper class for TURN that maps STUN transaction IDs to remote addresses. 
 */
public interface TurnStunMessageMapper
    {

    void mapMessage(StunMessage message, InetSocketAddress remoteAddress);

    InetSocketAddress get(StunMessage msg);

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy