File

server.lua @ 501:419c248919e8

util.dataforms: Remove local copy The main difference was the from_stanza() function, which was used in by 'clix adhoc', so moving it there seems sensible. Maybe reconsider upstreaming it to Prosody, but it's not used anywhere there.
author Kim Alvefur <zash@zash.se>
date Fri, 23 Jun 2023 12:38:58 +0200
parent 492:22844ac3be4e
line wrap: on
line source

local have_epoll, server_epoll = pcall(require, "prosody.net.server_epoll");
if have_epoll then return server_epoll; end

local server_select = require "prosody.net.server_select";
return server_select;