mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-15 13:35:04 -05:00
10 lines
344 B
Java
10 lines
344 B
Java
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 {
|
|
void onJinglePacketReceived(Account account, JinglePacket packet);
|
|
}
|