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

org.littleshoot.stun.stack.decoder.StunDemuxingStateMachineProtocolDecoder Maven / Gradle / Ivy

The newest version!
package org.littleshoot.stun.stack.decoder;

import org.littleshoot.util.mina.DemuxingStateMachineProtocolDecoder;

/**
 * Decoder for STUN messages that uses a state machine and is capable of being
 * demultiplexed with other protocols on the same port. 
 */
public class StunDemuxingStateMachineProtocolDecoder extends
    DemuxingStateMachineProtocolDecoder 
    {

    /**
     * Creates a new state machine decoder.
     */
    public StunDemuxingStateMachineProtocolDecoder()
        {
        super(new StunMessageDecodingState());
        }

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy