mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
Let modules set/write globals
This commit is contained in:
parent
298bb340b2
commit
c0f26c28d0
1 changed files with 2 additions and 1 deletions
3
main.lua
3
main.lua
|
@ -162,9 +162,10 @@ function disconnect(conn, err)
|
|||
sessions[conn].disconnect(err);
|
||||
end
|
||||
|
||||
modulemanager.loadall();
|
||||
|
||||
setmetatable(_G, { __index = function (t, k) print("WARNING: ATTEMPT TO READ A NIL GLOBAL!!!", k); error("Attempt to read a non-existent global. Naughty boy.", 2); end, __newindex = function (t, k, v) print("ATTEMPT TO SET A GLOBAL!!!!", tostring(k).." = "..tostring(v)); error("Attempt to set a global. Naughty boy.", 2); end }) --]][][[]][];
|
||||
|
||||
modulemanager.loadall();
|
||||
|
||||
local protected_handler = function (conn, data, err) local success, ret = pcall(handler, conn, data, err); if not success then print("ERROR on "..tostring(conn)..": "..ret); conn:close(); end end;
|
||||
local protected_disconnect = function (conn, err) local success, ret = pcall(disconnect, conn, err); if not success then print("ERROR on "..tostring(conn).." disconnect: "..ret); conn:close(); end end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue