Software /
code /
verse
Comparison
server.lua @ 492:22844ac3be4e
server: Import one of Prosodys net.server implementations
Wraps up this behavior in a new module.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 21 Jun 2023 12:21:09 +0200 |
comparison
equal
deleted
inserted
replaced
491:edf078a58f25 | 492:22844ac3be4e |
---|---|
1 local have_epoll, server_epoll = pcall(require, "prosody.net.server_epoll"); | |
2 if have_epoll then return server_epoll; end | |
3 | |
4 local server_select = require "prosody.net.server_select"; | |
5 return server_select; |