Software /
code /
prosody
File
util/sasl/external.lua @ 6542:32c84e1f706d
net.server_select: Remove socket.sleep call from main loop
It's been there since the start; but should really not be required.
People can remember an issue with FreeBSD that this solved, but this was a hack solution anyway.
If that issue rears it's head again, we will solve it properly.
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Mon, 19 Jan 2015 14:05:37 -0500 |
parent | 5687:e879b53e9df8 |
child | 6777:5de6b93d0190 |
line wrap: on
line source
local saslprep = require "util.encodings".stringprep.saslprep; module "sasl.external" local function external(self, message) message = saslprep(message); local state self.username, state = self.profile.external(message); if state == false then return "failure", "account-disabled"; elseif state == nil then return "failure", "not-authorized"; elseif state == "expired" then return "false", "credentials-expired"; end return "success"; end function init(registerMechanism) registerMechanism("EXTERNAL", {"external"}, external); end return _M;