Software /
code /
prosody
Diff
util/sasl/plain.lua @ 6777:5de6b93d0190
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 21 Feb 2015 10:36:37 +0100 |
parent | 5301:6279caf921f1 |
child | 8095:57192cf193c7 |
line wrap: on
line diff
--- a/util/sasl/plain.lua Mon Aug 10 22:16:05 2015 +0200 +++ b/util/sasl/plain.lua Sat Feb 21 10:36:37 2015 +0100 @@ -16,7 +16,7 @@ local nodeprep = require "util.encodings".stringprep.nodeprep; local log = require "util.logger".init("sasl"); -module "sasl.plain" +local _ENV = nil; -- ================================ -- SASL PLAIN according to RFC 4616 @@ -82,8 +82,10 @@ return "success"; end -function init(registerMechanism) +local function init(registerMechanism) registerMechanism("PLAIN", {"plain", "plain_test"}, plain); end -return _M; +return { + init = init; +}