Software /
code /
verse
File
server.lua @ 496:c4ae7aa2958a
util.sasl.oauthbearer: Fix message syntax
Each key-value pair has a \001 trailer, and then the whole thing has a
\001 trailer as well, so it should always end with two \001.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 23 Jun 2023 10:11:25 +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;