mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server: Switch to epoll backend by default
(if util.poll is found)
This commit is contained in:
parent
ce129b96c7
commit
610be29e2a
1 changed files with 5 additions and 1 deletions
|
@ -13,7 +13,11 @@ if not (prosody and prosody.config_loaded) then
|
|||
end
|
||||
|
||||
local log = require "util.logger".init("net.server");
|
||||
local server_type = require "core.configmanager".get("*", "network_backend") or "select";
|
||||
|
||||
local have_util_poll = pcall(require, "util.poll");
|
||||
local default_backend = have_util_poll and "epoll" or "select";
|
||||
|
||||
local server_type = require "core.configmanager".get("*", "network_backend") or default_backend;
|
||||
|
||||
if require "core.configmanager".get("*", "use_libevent") then
|
||||
server_type = "event";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue