Stream Management
This commit is contained in:
parent
6904bda756
commit
a59f728bdd
|
@ -63,12 +63,12 @@ public class Dino.Entities.Jid : Object {
|
||||||
return jid;
|
return jid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool equals_bare(Jid jid) {
|
public bool equals_bare(Jid? jid) {
|
||||||
return equals_bare_func(this, jid);
|
return jid != null && equals_bare_func(this, jid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool equals(Jid jid) {
|
public bool equals(Jid? jid) {
|
||||||
return equals_func(this, jid);
|
return jid != null && equals_func(this, jid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static new bool equals_bare_func(Jid jid1, Jid jid2) {
|
public static new bool equals_bare_func(Jid jid1, Jid jid2) {
|
||||||
|
|
|
@ -126,7 +126,7 @@ public class ConnectionManager {
|
||||||
Connection connection = new Connection(stream, new DateTime.now_local());
|
Connection connection = new Connection(stream, new DateTime.now_local());
|
||||||
connections[account] = connection;
|
connections[account] = connection;
|
||||||
change_connection_state(account, ConnectionState.CONNECTING);
|
change_connection_state(account, ConnectionState.CONNECTING);
|
||||||
stream.stream_negotiated.connect((stream) => {
|
stream.attached_modules.connect((stream) => {
|
||||||
change_connection_state(account, ConnectionState.CONNECTED);
|
change_connection_state(account, ConnectionState.CONNECTED);
|
||||||
});
|
});
|
||||||
stream.get_module(PlainSasl.Module.IDENTITY).received_auth_failure.connect((stream, node) => {
|
stream.get_module(PlainSasl.Module.IDENTITY).received_auth_failure.connect((stream, node) => {
|
||||||
|
|
|
@ -33,20 +33,30 @@ public class ModuleManager {
|
||||||
public ArrayList<Core.XmppStreamModule> get_modules(Account account, string? resource = null) {
|
public ArrayList<Core.XmppStreamModule> get_modules(Account account, string? resource = null) {
|
||||||
ArrayList<Core.XmppStreamModule> modules = new ArrayList<Core.XmppStreamModule>();
|
ArrayList<Core.XmppStreamModule> modules = new ArrayList<Core.XmppStreamModule>();
|
||||||
|
|
||||||
modules.add(new Bind.Module(resource == null ? account.resourcepart : resource));
|
|
||||||
modules.add(new PlainSasl.Module(account.bare_jid.to_string(), account.password));
|
|
||||||
lock (module_map) {
|
lock (module_map) {
|
||||||
if (!module_map.has_key(account)) initialize(account);
|
if (!module_map.has_key(account)) initialize(account);
|
||||||
foreach (Core.XmppStreamModule module in module_map[account]) modules.add(module);
|
foreach (Core.XmppStreamModule module in module_map[account]) modules.add(module);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (Core.XmppStreamModule module in module_map[account]) {
|
||||||
|
if (module.get_id() == Bind.Module.IDENTITY.id) {
|
||||||
|
(module as Bind.Module).requested_resource == null ? account.resourcepart : resource;
|
||||||
|
} else if (module.get_id() == PlainSasl.Module.IDENTITY.id) {
|
||||||
|
(module as PlainSasl.Module).password = account.password;
|
||||||
|
}
|
||||||
|
}
|
||||||
return modules;
|
return modules;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void initialize(Account account) {
|
public void initialize(Account account) {
|
||||||
lock(module_map) {
|
lock(module_map) {
|
||||||
module_map[account] = new ArrayList<Core.XmppStreamModule>();
|
module_map[account] = new ArrayList<Core.XmppStreamModule>();
|
||||||
|
module_map[account].add(new Iq.Module());
|
||||||
module_map[account].add(new Tls.Module());
|
module_map[account].add(new Tls.Module());
|
||||||
module_map[account].add(new Xep.SrvRecordsTls.Module());
|
module_map[account].add(new Xep.SrvRecordsTls.Module());
|
||||||
|
module_map[account].add(new PlainSasl.Module(account.bare_jid.to_string(), account.password));
|
||||||
|
module_map[account].add(new Xep.StreamManagement.Module());
|
||||||
|
module_map[account].add(new Bind.Module(account.resourcepart));
|
||||||
module_map[account].add(new Session.Module());
|
module_map[account].add(new Session.Module());
|
||||||
module_map[account].add(new Roster.Module());
|
module_map[account].add(new Roster.Module());
|
||||||
module_map[account].add(new Xep.ServiceDiscovery.Module.with_identity("client", "pc"));
|
module_map[account].add(new Xep.ServiceDiscovery.Module.with_identity("client", "pc"));
|
||||||
|
|
|
@ -10,6 +10,7 @@ public class StreamInteractor {
|
||||||
public signal void account_added(Account account);
|
public signal void account_added(Account account);
|
||||||
public signal void account_removed(Account account);
|
public signal void account_removed(Account account);
|
||||||
public signal void stream_negotiated(Account account, Core.XmppStream stream);
|
public signal void stream_negotiated(Account account, Core.XmppStream stream);
|
||||||
|
public signal void attached_modules(Account account, Core.XmppStream stream);
|
||||||
|
|
||||||
public ModuleManager module_manager;
|
public ModuleManager module_manager;
|
||||||
public ConnectionManager connection_manager;
|
public ConnectionManager connection_manager;
|
||||||
|
|
|
@ -77,8 +77,7 @@ public class UploadStreamModule : XmppStreamModule {
|
||||||
public override void attach(XmppStream stream) {
|
public override void attach(XmppStream stream) {
|
||||||
Iq.Module.require(stream);
|
Iq.Module.require(stream);
|
||||||
ServiceDiscovery.Module.require(stream);
|
ServiceDiscovery.Module.require(stream);
|
||||||
|
stream.stream_negotiated.connect(query_availability);
|
||||||
query_availability(stream);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void detach(XmppStream stream) {
|
public override void detach(XmppStream stream) {
|
||||||
|
|
|
@ -55,6 +55,7 @@ SOURCES
|
||||||
"src/module/xep/0084_user_avatars.vala"
|
"src/module/xep/0084_user_avatars.vala"
|
||||||
"src/module/xep/0085_chat_state_notifications.vala"
|
"src/module/xep/0085_chat_state_notifications.vala"
|
||||||
"src/module/xep/0115_entitiy_capabilities.vala"
|
"src/module/xep/0115_entitiy_capabilities.vala"
|
||||||
|
"src/module/xep/0198_stream_management.vala"
|
||||||
"src/module/xep/0199_ping.vala"
|
"src/module/xep/0199_ping.vala"
|
||||||
"src/module/xep/0184_message_delivery_receipts.vala"
|
"src/module/xep/0184_message_delivery_receipts.vala"
|
||||||
"src/module/xep/0203_delayed_delivery.vala"
|
"src/module/xep/0203_delayed_delivery.vala"
|
||||||
|
|
|
@ -21,11 +21,12 @@ public class XmppStream {
|
||||||
private StanzaReader? reader;
|
private StanzaReader? reader;
|
||||||
private StanzaWriter? writer;
|
private StanzaWriter? writer;
|
||||||
|
|
||||||
private Gee.List<XmppStreamFlag> flags = new ArrayList<XmppStreamFlag>();
|
public Gee.List<XmppStreamFlag> flags { get; private set; default=new ArrayList<XmppStreamFlag>(); }
|
||||||
private Gee.List<XmppStreamModule> modules = new ArrayList<XmppStreamModule>();
|
public Gee.List<XmppStreamModule> modules { get; private set; default=new ArrayList<XmppStreamModule>(); }
|
||||||
private Gee.List<ConnectionProvider> connection_providers = new ArrayList<ConnectionProvider>();
|
private Gee.List<ConnectionProvider> connection_providers = new ArrayList<ConnectionProvider>();
|
||||||
|
public bool negotiation_complete { get; set; default=false; }
|
||||||
private bool setup_needed = false;
|
private bool setup_needed = false;
|
||||||
private bool negotiation_complete = false;
|
private bool non_negotiation_modules_attached = false;
|
||||||
|
|
||||||
public signal void received_node(XmppStream stream, StanzaNode node);
|
public signal void received_node(XmppStream stream, StanzaNode node);
|
||||||
public signal void received_root_node(XmppStream stream, StanzaNode node);
|
public signal void received_root_node(XmppStream stream, StanzaNode node);
|
||||||
|
@ -35,6 +36,7 @@ public class XmppStream {
|
||||||
public signal void received_iq_stanza(XmppStream stream, StanzaNode node);
|
public signal void received_iq_stanza(XmppStream stream, StanzaNode node);
|
||||||
public signal void received_nonza(XmppStream stream, StanzaNode node);
|
public signal void received_nonza(XmppStream stream, StanzaNode node);
|
||||||
public signal void stream_negotiated(XmppStream stream);
|
public signal void stream_negotiated(XmppStream stream);
|
||||||
|
public signal void attached_modules(XmppStream stream);
|
||||||
|
|
||||||
public XmppStream() {
|
public XmppStream() {
|
||||||
register_connection_provider(new StartTlsConnectionProvider());
|
register_connection_provider(new StartTlsConnectionProvider());
|
||||||
|
@ -42,6 +44,7 @@ public class XmppStream {
|
||||||
|
|
||||||
public void connect(string? remote_name = null) throws IOStreamError {
|
public void connect(string? remote_name = null) throws IOStreamError {
|
||||||
if (remote_name != null) this.remote_name = (!)remote_name;
|
if (remote_name != null) this.remote_name = (!)remote_name;
|
||||||
|
attach_negotation_modules();
|
||||||
try {
|
try {
|
||||||
int min_priority = -1;
|
int min_priority = -1;
|
||||||
ConnectionProvider? best_provider = null;
|
ConnectionProvider? best_provider = null;
|
||||||
|
@ -138,9 +141,7 @@ public class XmppStream {
|
||||||
|
|
||||||
public XmppStream add_module(XmppStreamModule module) {
|
public XmppStream add_module(XmppStreamModule module) {
|
||||||
modules.add(module);
|
modules.add(module);
|
||||||
if (negotiation_complete || module as XmppStreamNegotiationModule != null) {
|
if (negotiation_complete) module.attach(this);
|
||||||
module.attach(this);
|
|
||||||
}
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,6 +161,16 @@ public class XmppStream {
|
||||||
connection_providers.add(connection_provider);
|
connection_providers.add(connection_provider);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool is_negotiation_active() {
|
||||||
|
foreach (XmppStreamModule module in modules) {
|
||||||
|
if (module is XmppStreamNegotiationModule) {
|
||||||
|
XmppStreamNegotiationModule negotiation_module = (XmppStreamNegotiationModule) module;
|
||||||
|
if (negotiation_module.negotiation_active(this)) return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private void setup() throws IOStreamError {
|
private void setup() throws IOStreamError {
|
||||||
StanzaNode outs = new StanzaNode.build("stream", "http://etherx.jabber.org/streams")
|
StanzaNode outs = new StanzaNode.build("stream", "http://etherx.jabber.org/streams")
|
||||||
.put_attribute("to", remote_name)
|
.put_attribute("to", remote_name)
|
||||||
|
@ -203,10 +214,13 @@ public class XmppStream {
|
||||||
received_nonza(this, node);
|
received_nonza(this, node);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!negotiation_complete && negotiation_modules_done()) {
|
if (!non_negotiation_modules_attached && negotiation_modules_done()) {
|
||||||
negotiation_complete = true;
|
|
||||||
attach_non_negotation_modules();
|
attach_non_negotation_modules();
|
||||||
|
non_negotiation_modules_attached = true;
|
||||||
|
if (!negotiation_complete) {
|
||||||
stream_negotiated(this);
|
stream_negotiated(this);
|
||||||
|
negotiation_complete = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -214,15 +228,13 @@ public class XmppStream {
|
||||||
private bool negotiation_modules_done() throws IOStreamError {
|
private bool negotiation_modules_done() throws IOStreamError {
|
||||||
if (!setup_needed) {
|
if (!setup_needed) {
|
||||||
bool mandatory_outstanding = false;
|
bool mandatory_outstanding = false;
|
||||||
bool negotiation_active = false;
|
|
||||||
foreach (XmppStreamModule module in modules) {
|
foreach (XmppStreamModule module in modules) {
|
||||||
XmppStreamNegotiationModule? negotiation_module = module as XmppStreamNegotiationModule;
|
if (module is XmppStreamNegotiationModule) {
|
||||||
if (negotiation_module != null) {
|
XmppStreamNegotiationModule negotiation_module = (XmppStreamNegotiationModule) module;
|
||||||
if (((!)negotiation_module).negotiation_active(this)) negotiation_active = true;
|
if (negotiation_module.mandatory_outstanding(this)) mandatory_outstanding = true;
|
||||||
if (((!)negotiation_module).mandatory_outstanding(this)) mandatory_outstanding = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!negotiation_active) {
|
if (!is_negotiation_active()) {
|
||||||
if (mandatory_outstanding) {
|
if (mandatory_outstanding) {
|
||||||
throw new IOStreamError.CONNECT("mandatory-to-negotiate feature not negotiated");
|
throw new IOStreamError.CONNECT("mandatory-to-negotiate feature not negotiated");
|
||||||
} else {
|
} else {
|
||||||
|
@ -239,6 +251,15 @@ public class XmppStream {
|
||||||
module.attach(this);
|
module.attach(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
attached_modules(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void attach_negotation_modules() {
|
||||||
|
foreach (XmppStreamModule module in modules) {
|
||||||
|
if (module as XmppStreamNegotiationModule != null) {
|
||||||
|
module.attach(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private StanzaNode read_root() throws IOStreamError {
|
private StanzaNode read_root() throws IOStreamError {
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace Xmpp.Bind {
|
||||||
public class Module : XmppStreamNegotiationModule {
|
public class Module : XmppStreamNegotiationModule {
|
||||||
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "bind_module");
|
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "bind_module");
|
||||||
|
|
||||||
private string requested_resource;
|
public string requested_resource { get; set; }
|
||||||
|
|
||||||
public signal void bound_to_resource(XmppStream stream, string my_jid);
|
public signal void bound_to_resource(XmppStream stream, string my_jid);
|
||||||
|
|
||||||
|
@ -28,15 +28,14 @@ namespace Xmpp.Bind {
|
||||||
|
|
||||||
public void received_features_node(XmppStream stream) {
|
public void received_features_node(XmppStream stream) {
|
||||||
if (stream.is_setup_needed()) return;
|
if (stream.is_setup_needed()) return;
|
||||||
|
if (stream.is_negotiation_active()) return;
|
||||||
|
|
||||||
var bind = stream.features.get_subnode("bind", NS_URI);
|
var bind = stream.features.get_subnode("bind", NS_URI);
|
||||||
if (bind != null) {
|
if (bind != null) {
|
||||||
var flag = new Flag();
|
var flag = new Flag();
|
||||||
StanzaNode bind_node = new StanzaNode.build("bind", NS_URI).add_self_xmlns();
|
StanzaNode bind_node = new StanzaNode.build("bind", NS_URI).add_self_xmlns();
|
||||||
bind_node.put_node(new StanzaNode.build("resource", NS_URI).put_node(new StanzaNode.text(requested_resource)));
|
bind_node.put_node(new StanzaNode.build("resource", NS_URI).put_node(new StanzaNode.text(requested_resource)));
|
||||||
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, new Iq.Stanza.set(bind_node), (stream, iq) => {
|
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, new Iq.Stanza.set(bind_node), iq_response_stanza);
|
||||||
stream.get_module(Module.IDENTITY).iq_response_stanza(stream, iq);
|
|
||||||
});
|
|
||||||
stream.add_flag(flag);
|
stream.add_flag(flag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ namespace Xmpp.PlainSasl {
|
||||||
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "plain_module");
|
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "plain_module");
|
||||||
private const string MECHANISM = "PLAIN";
|
private const string MECHANISM = "PLAIN";
|
||||||
|
|
||||||
private string name;
|
public string name { get; set; }
|
||||||
private string password;
|
public string password { get; set; }
|
||||||
public bool use_full_name = false;
|
public bool use_full_name = false;
|
||||||
|
|
||||||
public signal void received_auth_failure(XmppStream stream, StanzaNode node);
|
public signal void received_auth_failure(XmppStream stream, StanzaNode node);
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
namespace Xmpp.Xep.DateTimeProfiles {
|
namespace Xmpp.Xep.DateTimeProfiles {
|
||||||
|
|
||||||
public class Module {
|
public class Module {
|
||||||
public Regex DATETIME_REGEX;
|
public Regex DATETIME_REGEX;
|
||||||
|
|
||||||
public Module() {
|
public Module() {
|
||||||
DATETIME_REGEX = new Regex("""^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.(\d{3}))?(Z|((\+|\-)(\d{2}):(\d{2})))$""");
|
DATETIME_REGEX = new Regex("""^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.(\d{3}))?(Z|((\+|\-)(\d{2})(:(\d{2}))?))$""");
|
||||||
}
|
}
|
||||||
|
|
||||||
public DateTime? parse_string(string time_string) {
|
public DateTime? parse_string(string time_string) {
|
||||||
|
@ -33,9 +33,10 @@ namespace Xmpp.Xep.DateTimeProfiles {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string to_datetime(DateTime time) {
|
public string to_datetime(DateTime time) {
|
||||||
return time.format("%Y-%m-%dT%H:%M:%SZ");
|
return time.to_utc().format("%Y-%m-%dT%H:%M:%SZ");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
112
xmpp-vala/src/module/xep/0198_stream_management.vala
Normal file
112
xmpp-vala/src/module/xep/0198_stream_management.vala
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
using Xmpp.Core;
|
||||||
|
|
||||||
|
namespace Xmpp.Xep.StreamManagement {
|
||||||
|
|
||||||
|
public const string NS_URI = "urn:xmpp:sm:3";
|
||||||
|
|
||||||
|
public class Module : XmppStreamNegotiationModule {
|
||||||
|
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "0313_message_archive_management");
|
||||||
|
|
||||||
|
public int h_inbound { get; private set; default=0; }
|
||||||
|
public string? session_id { get; set; default=null; }
|
||||||
|
public Gee.List<XmppStreamFlag> flags = null;
|
||||||
|
|
||||||
|
public override void attach(XmppStream stream) {
|
||||||
|
stream.get_module(Bind.Module.IDENTITY).bound_to_resource.connect(check_enable);
|
||||||
|
stream.received_features_node.connect(check_resume);
|
||||||
|
|
||||||
|
stream.received_nonza.connect(on_received_nonza);
|
||||||
|
stream.received_message_stanza.connect(on_stanza_received);
|
||||||
|
stream.received_presence_stanza.connect(on_stanza_received);
|
||||||
|
stream.received_iq_stanza.connect(on_stanza_received);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void detach(XmppStream stream) { }
|
||||||
|
|
||||||
|
public static void require(XmppStream stream) {
|
||||||
|
if (stream.get_module(IDENTITY) == null) stream.add_module(new PrivateXmlStorage.Module());
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool mandatory_outstanding(XmppStream stream) { return false; }
|
||||||
|
|
||||||
|
public override bool negotiation_active(XmppStream stream) {
|
||||||
|
return stream.has_flag(Flag.IDENTITY) && !stream.get_flag(Flag.IDENTITY).finished;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string get_ns() { return NS_URI; }
|
||||||
|
public override string get_id() { return IDENTITY.id; }
|
||||||
|
|
||||||
|
private void on_stanza_received(XmppStream stream, StanzaNode node) {
|
||||||
|
lock (h_inbound) h_inbound++;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void check_resume(XmppStream stream) {
|
||||||
|
if (stream_has_sm_feature(stream) && session_id != null) {
|
||||||
|
Tls.Flag? tls_flag = stream.get_flag(Tls.Flag.IDENTITY);
|
||||||
|
if (tls_flag != null && tls_flag.finished) {
|
||||||
|
StanzaNode node = new StanzaNode.build("resume", NS_URI).add_self_xmlns()
|
||||||
|
.put_attribute("h", h_inbound.to_string())
|
||||||
|
.put_attribute("previd", session_id);
|
||||||
|
stream.write(node);
|
||||||
|
stream.add_flag(new Flag());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void check_enable(XmppStream stream) {
|
||||||
|
if (stream_has_sm_feature(stream) && session_id == null) {
|
||||||
|
StanzaNode node = new StanzaNode.build("enable", NS_URI).add_self_xmlns().put_attribute("resume", "true");
|
||||||
|
stream.write(node);
|
||||||
|
stream.add_flag(new Flag());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void on_received_nonza(XmppStream stream, StanzaNode node) {
|
||||||
|
if (node.ns_uri == NS_URI) {
|
||||||
|
if (node.name == "r") {
|
||||||
|
send_ack(stream);
|
||||||
|
} else if (node.name == "a") {
|
||||||
|
handle_ack(stream, node);
|
||||||
|
} else if (node.name in new string[]{"enabled", "resumed", "failed"}) {
|
||||||
|
stream.get_flag(Flag.IDENTITY).finished = true;
|
||||||
|
|
||||||
|
if (node.name == "enabled") {
|
||||||
|
lock(h_inbound) h_inbound = 0;
|
||||||
|
session_id = node.get_attribute("id", NS_URI);
|
||||||
|
flags = stream.flags;
|
||||||
|
} else if (node.name == "resumed") {
|
||||||
|
foreach (XmppStreamFlag flag in flags) {
|
||||||
|
stream.add_flag(flag);
|
||||||
|
}
|
||||||
|
stream.negotiation_complete = true;
|
||||||
|
} else if (node.name == "failed") {
|
||||||
|
stream.received_features_node(stream);
|
||||||
|
session_id = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void send_ack(XmppStream stream) {
|
||||||
|
StanzaNode node = new StanzaNode.build("a", NS_URI).add_self_xmlns().put_attribute("h", h_inbound.to_string());
|
||||||
|
stream.write(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handle_ack(XmppStream stream, StanzaNode node) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool stream_has_sm_feature(XmppStream stream) {
|
||||||
|
return stream.features.get_subnode("sm", NS_URI) != null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Flag : XmppStreamFlag {
|
||||||
|
public static FlagIdentity<Flag> IDENTITY = new FlagIdentity<Flag>(NS_URI, "stream_management");
|
||||||
|
public bool finished = false;
|
||||||
|
|
||||||
|
public override string get_ns() { return NS_URI; }
|
||||||
|
public override string get_id() { return IDENTITY.id; }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue