mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server: Throw error when loading outside Prosody or Prosody config not loaded
This commit is contained in:
parent
cbaa78ecca
commit
1c68fe88f7
1 changed files with 9 additions and 2 deletions
|
@ -6,9 +6,16 @@
|
|||
-- COPYING file in the source package for more information.
|
||||
--
|
||||
|
||||
if not (prosody and prosody.config_loaded) then
|
||||
-- This module only supports loading inside Prosody, outside Prosody
|
||||
-- you should directly require net.server_select or server_event, etc.
|
||||
error(debug.traceback("Loading outside Prosody or Prosody not yet initialized"), 0);
|
||||
end
|
||||
|
||||
local log = require "util.logger".init("net.server");
|
||||
local server_type = prosody and require "core.configmanager".get("*", "network_backend") or "select";
|
||||
if prosody and require "core.configmanager".get("*", "use_libevent") then
|
||||
local server_type = require "core.configmanager".get("*", "network_backend") or "select";
|
||||
|
||||
if require "core.configmanager".get("*", "use_libevent") then
|
||||
server_type = "event";
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue