net.server: Throw error when loading outside Prosody or Prosody config not loaded

This commit is contained in:
Matthew Wild 2018-08-19 14:45:19 +01:00
parent cbaa78ecca
commit 1c68fe88f7

View file

@ -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