Software /
code /
prosody
Diff
core/sessionmanager.lua @ 1469:9f2b6e2bc498
sessionmanager: Newly created sessions shouldn't have a priority. Fixes one of the stanza-gobbling bugs \o/
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 03 Jul 2009 21:37:09 +0100 |
parent | 1450:c1c7b27b983b |
child | 1471:8b3753b080fc |
line wrap: on
line diff
--- a/core/sessionmanager.lua Fri Jul 03 14:58:11 2009 +0100 +++ b/core/sessionmanager.lua Fri Jul 03 21:37:09 2009 +0100 @@ -40,7 +40,7 @@ local open_sessions = 0; function new_session(conn) - local session = { conn = conn, priority = 0, type = "c2s_unauthed", conntime = gettime() }; + local session = { conn = conn, type = "c2s_unauthed", conntime = gettime() }; if true then session.trace = newproxy(true); getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end;