2014-04-08 21:15:55 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
2014-03-27 01:02:59 +00:00
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.xmpp.PacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
2014-03-27 01:02:59 +00:00
|
|
|
|
|
|
|
public interface OnJinglePacketReceived extends PacketReceived {
|
|
|
|
public void onJinglePacketReceived(Account account, JinglePacket packet);
|
|
|
|
}
|