2020-04-02 09:30:16 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
2020-04-02 14:29:33 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2020-04-02 09:30:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
2020-04-02 14:29:33 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2020-04-02 09:30:16 +00:00
|
|
|
|
|
|
|
public class JingleRtpConnection extends AbstractJingleConnection {
|
|
|
|
|
|
|
|
|
|
|
|
public JingleRtpConnection(JingleConnectionManager jingleConnectionManager, Id id) {
|
|
|
|
super(jingleConnectionManager, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
void deliverPacket(final JinglePacket jinglePacket) {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": packet delivered to JingleRtpConnection");
|
|
|
|
}
|
2020-04-02 14:29:33 +00:00
|
|
|
|
|
|
|
void deliveryMessage(final Jid to, Jid from, Element message) {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": delivered message to JingleRtpConnection " + message);
|
|
|
|
}
|
2020-04-02 09:30:16 +00:00
|
|
|
}
|