Software /
code /
prosody
Comparison
plugins/mod_dialback.lua @ 1042:a3d77353c18a
mod_*: Fix a load of global accesses
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 22 Apr 2009 21:32:23 +0100 |
parent | 896:2c0b9e3c11c3 |
child | 1070:3b066968063b |
comparison
equal
deleted
inserted
replaced
1041:07835534d996 | 1042:a3d77353c18a |
---|---|
5 -- This project is MIT/X11 licensed. Please see the | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | 6 -- COPYING file in the source package for more information. |
7 -- | 7 -- |
8 | 8 |
9 | 9 |
10 | 10 local hosts = _G.hosts; |
11 local send_s2s = require "core.s2smanager".send_to_host; | 11 local send_s2s = require "core.s2smanager".send_to_host; |
12 local s2s_make_authenticated = require "core.s2smanager".make_authenticated; | 12 local s2s_make_authenticated = require "core.s2smanager".make_authenticated; |
13 local s2s_verify_dialback = require "core.s2smanager".verify_dialback; | 13 local s2s_verify_dialback = require "core.s2smanager".verify_dialback; |
14 local s2s_destroy_session = require "core.s2smanager".destroy_session; | 14 local s2s_destroy_session = require "core.s2smanager".destroy_session; |
15 | 15 |