mod_auth_imap/auth_imap/sasl_imap.lib.lua
changeset 1199 5d46281a5d23
parent 1196 f45ca6edc159
child 1200 34216cdffda6
equal deleted inserted replaced
1198:b21bd39c8a12 1199:5d46281a5d23
     5 
     5 
     6 local log = require "util.logger".init("sasl_imap");
     6 local log = require "util.logger".init("sasl_imap");
     7 
     7 
     8 local setmetatable = setmetatable;
     8 local setmetatable = setmetatable;
     9 
     9 
    10 local s_match, s_gmatch = string.match, string.gmatch
    10 local s_match = string.match;
    11 local t_concat = table.concat;
    11 local t_concat = table.concat;
    12 local m_random = math.random;
       
    13 local tostring, tonumber = tostring, tonumber;
    12 local tostring, tonumber = tostring, tonumber;
    14 
    13 
    15 local socket = require "socket"
    14 local socket = require "socket"
    16 -- TODO -- local ssl = require "ssl"
    15 -- TODO -- local ssl = require "ssl"
    17 local base64 = require "util.encodings".base64;
    16 local base64 = require "util.encodings".base64;