Software /
code /
prosody
Diff
core/s2smanager.lua @ 1199:db2a55fe94f2
s2smanager: Only send reply </stream:stream> when connection is still open
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 26 May 2009 01:07:52 +0100 |
parent | 1075:831c84cbf5fa |
child | 1204:dea89234e545 |
line wrap: on
line diff
--- a/core/s2smanager.lua Tue May 26 01:07:21 2009 +0100 +++ b/core/s2smanager.lua Tue May 26 01:07:52 2009 +0100 @@ -306,7 +306,9 @@ function streamclosed(session) (session.log or log)("debug", "</stream:stream>"); - session.sends2s("</stream:stream>"); + if session.sends2s then + session.sends2s("</stream:stream>"); + end session.notopen = true; end