blob: fcf7584fe3531fb387234dca78e357f785d66b70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using Gee;
using Xmpp.Xep;
using Xmpp;
namespace Xmpp.Xep.Jingle {
public interface SessionInfoNs : Object {
public abstract string ns_uri { get; }
public abstract void handle_content_session_info(XmppStream stream, Session session, StanzaNode info, Iq.Stanza iq) throws IqError;
}
}
|