Added session property for interested resources

This commit is contained in:
Waqas Hussain 2008-10-23 02:11:27 +05:00
parent 4bd562b306
commit 6701f399ad
2 changed files with 2 additions and 1 deletions

View file

@ -76,7 +76,7 @@ function roster_push(username, host, jid)
stanza:up();
-- stanza ready
for _, session in pairs(hosts[host].sessions[username].sessions) do
if session.full_jid then
if session.interested then
-- FIXME do we need to set stanza.attr.to?
session.send(stanza);
end

View file

@ -26,6 +26,7 @@ add_iq_handler("c2s", "jabber:iq:roster",
end
end
send(session, roster);
session.interested = true; -- resource is interested in roster updates
return true;
elseif stanza.attr.type == "set" then
local query = stanza.tags[1];