Software /
code /
prosody-modules
File
mod_secure_interfaces/mod_secure_interfaces.lua @ 2210:126d79bf079b
mod_http_roster_admin: Also log if the status error is 0 (Connection refused)
(Also replaced spaced indentation with tabs, as is the convention)
author | JC Brand <jcbrand@minddistrict.com> |
---|---|
date | Tue, 14 Jun 2016 14:13:30 +0000 |
parent | 1177:a464261deba8 |
child | 2726: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);