view mod_secure_interfaces/mod_secure_interfaces.lua @ 1216:81a3bf8aba90

mod_component_client: Use the net.server connection abstraction for sending whitespace keep-alive, and not the raw socket (fixes a traceback which lead to an infinite timer loop in libevent)
author Waqas Hussain <waqas20@gmail.com>
date Mon, 28 Oct 2013 11:55:59 -0400
parents a464261deba8
children 55f3ab952d06
line wrap: on
line source

local secure_interfaces = module:get_option_set("secure_interfaces", { "127.0.0.1" });

module:hook("stream-features", function (event)
	local session = event.origin;
	if session.type ~= "c2s_unauthed" then return; end
	local socket = session.conn:socket();
	if not socket.getsockname then return; end
	local localip = socket:getsockname();
	if secure_interfaces:contains(localip) then
		module:log("debug", "Marking session from %s as secure", session.ip or "[?]");
		session.secure = true;
	end
end, 2500);