# HG changeset patch # User Matthew Wild # Date 1254534088 -3600 # Node ID 1905eca82ddf7f7bb65ef662f6b143db347875e4 # Parent 838d1317bca402b4cf8aa35e9b421065647ef3b8 sessionmanager: Add c2s_timeout option for unauthenticated client connections diff -r 838d1317bca4 -r 1905eca82ddf core/sessionmanager.lua --- a/core/sessionmanager.lua Sat Oct 03 02:33:33 2009 +0100 +++ b/core/sessionmanager.lua Sat Oct 03 02:41:28 2009 +0100 @@ -28,11 +28,13 @@ local nameprep = require "util.encodings".stringprep.nameprep; local fire_event = require "core.eventmanager".fire_event; - +local add_task = require "util.timer".add_task; local gettime = require "socket".gettime; local st = require "util.stanza"; +local c2s_timeout = config_get("*", "core", "c2s_timeout"); + local newproxy = newproxy; local getmetatable = getmetatable; @@ -53,6 +55,14 @@ session.ip = conn.ip(); local conn_name = "c2s"..tostring(conn):match("[a-f0-9]+$"); session.log = logger.init(conn_name); + + if c2s_timeout then + add_task(c2s_timeout, function () + if session.type == "c2s_unauthed" then + session:close("connection-timeout"); + end + end); + end return session; end