mirror of https://github.com/sipwise/jitsi.git
parent
6b6d3a467b
commit
71502c01cc
@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||||
|
*
|
||||||
|
* Distributable under LGPL license.
|
||||||
|
* See terms of license at gnu.org.
|
||||||
|
*/
|
||||||
|
package net.java.sip.communicator.impl.protocol.jabber.extensions.jingle;
|
||||||
|
|
||||||
|
import net.java.sip.communicator.impl.protocol.jabber.extensions.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An 'rtcp-mux' extension.
|
||||||
|
* @author Boris Grozev
|
||||||
|
*/
|
||||||
|
public class RtcpmuxPacketExtension
|
||||||
|
extends AbstractPacketExtension
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name of the "encryption" element.
|
||||||
|
*/
|
||||||
|
public static final String ELEMENT_NAME = "rtcp-mux";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new instance of <tt>RtcpmuxPacketExtension</tt>.
|
||||||
|
*/
|
||||||
|
public RtcpmuxPacketExtension()
|
||||||
|
{
|
||||||
|
super(null, ELEMENT_NAME);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in new issue