Software /
code /
prosody
Comparison
plugins/mod_auth_internal_hashed.lua @ 3269:342fd8f8ccd9
mod_auth_internal_hashed: Log as "auth_internal_hashed", not as "usermanager".
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Tue, 15 Jun 2010 09:12:49 +0500 |
parent | 3268:c1b687a5818d |
child | 3287:e425e27c12be |
comparison
equal
deleted
inserted
replaced
3268:c1b687a5818d | 3269:342fd8f8ccd9 |
---|---|
6 -- This project is MIT/X11 licensed. Please see the | 6 -- This project is MIT/X11 licensed. Please see the |
7 -- COPYING file in the source package for more information. | 7 -- COPYING file in the source package for more information. |
8 -- | 8 -- |
9 | 9 |
10 local datamanager = require "util.datamanager"; | 10 local datamanager = require "util.datamanager"; |
11 local log = require "util.logger".init("usermanager"); | 11 local log = require "util.logger".init("auth_internal_hashed"); |
12 local type = type; | 12 local type = type; |
13 local error = error; | 13 local error = error; |
14 local ipairs = ipairs; | 14 local ipairs = ipairs; |
15 local hashes = require "util.hashes"; | 15 local hashes = require "util.hashes"; |
16 local jid_bare = require "util.jid".bare; | 16 local jid_bare = require "util.jid".bare; |