sessionmanager, s2smanager, mod_component: Send reply </stream:stream> when client closes stream

This commit is contained in:
Matthew Wild 2009-04-05 20:06:39 +01:00
parent 08a1dbd27f
commit a27b839551
3 changed files with 12 additions and 0 deletions

View file

@ -69,6 +69,8 @@ function stream_callbacks.streamopened(session, attr)
end
function stream_callbacks.streamclosed(session)
session.send("</stream:stream>");
session.notopen = true;
end
local core_process_stanza = core_process_stanza;