2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.xmpp.PacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
|
|
|
|
|
|
|
public interface OnJinglePacketReceived extends PacketReceived {
|
2015-10-12 10:36:54 +00:00
|
|
|
void onJinglePacketReceived(Account account, JinglePacket packet);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|