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

org.littleshoot.stun.stack.StunMessageDecoder Maven / Gradle / Ivy

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

import org.littleshoot.stun.stack.decoder.StunMessageDecodingState;
import org.littleshoot.util.mina.StateMachineProtocolDecoder;

/**
 * Decoder for STUN messages
 */
public class StunMessageDecoder extends StateMachineProtocolDecoder {

    /**
     * Creates a new decoder.
     */
    public StunMessageDecoder() {
        super(new StunMessageDecodingState());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy