mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +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
|
@ -10,7 +10,7 @@ local ssl = require "ssl";
|
|||
local configmanager = require "core.configmanager";
|
||||
local log = require "util.logger".init("certmanager");
|
||||
local ssl_newcontext = ssl.newcontext;
|
||||
local new_config = require"util.sslconfig".new;
|
||||
local new_config = require"net.server".tls_builder;
|
||||
local stat = require "lfs".attributes;
|
||||
|
||||
local x509 = require "util.x509";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue