mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net: refactor sslconfig to not depend on LuaSec
This now requires that the network backend exposes a tls_builder function, which essentially wraps the former util.sslconfig.new() function, passing a factory to create the eventual SSL context. That allows a net.server backend to pick whatever it likes as SSL context factory, as long as it understands the config table passed by the SSL config builder. Heck, a backend could even mock and replace the entire SSL config builder API.
This commit is contained in:
parent
38346dd6f1
commit
9f7c3b9ba6
6 changed files with 51 additions and 17 deletions
|
@ -27,6 +27,8 @@ local inet_pton = inet.pton;
|
|||
local _SOCKETINVALID = socket._SOCKETINVALID or -1;
|
||||
local new_id = require "util.id".short;
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
local sslconfig = require "util.sslconfig";
|
||||
local tls_impl = require "net.tls_luasec";
|
||||
|
||||
local poller = require "util.poll"
|
||||
local EEXIST = poller.EEXIST;
|
||||
|
@ -1104,6 +1106,10 @@ return {
|
|||
cfg = setmetatable(newconfig, default_config);
|
||||
end;
|
||||
|
||||
tls_builder = function(basedir)
|
||||
return sslconfig._new(tls_impl.new_context, basedir)
|
||||
end,
|
||||
|
||||
-- libevent emulation
|
||||
event = { EV_READ = "r", EV_WRITE = "w", EV_READWRITE = "rw", EV_LEAVE = -1 };
|
||||
addevent = function (fd, mode, callback)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue