mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.tls_luasec: Harden dependency on LuaSec
We at some point decided that it was okay to have a hard dependency the TLS library. Especially here since this module is meant to contain all LuaSec specifics.
This commit is contained in:
parent
edb490504d
commit
c90b2eca9d
1 changed files with 2 additions and 3 deletions
|
@ -16,10 +16,9 @@ commonly used things (such as SNI contexts). Eventually, network backends
|
|||
which do not rely on LuaSocket+LuaSec should be able to provide *this* API
|
||||
instead of having to mimic LuaSec.
|
||||
]]
|
||||
local softreq = require"util.dependencies".softreq;
|
||||
local ssl = softreq"ssl";
|
||||
local ssl = require "ssl";
|
||||
local ssl_newcontext = ssl.newcontext;
|
||||
local ssl_context = ssl.context or softreq"ssl.context";
|
||||
local ssl_context = ssl.context or require "ssl.context";
|
||||
local io_open = io.open;
|
||||
|
||||
local context_api = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue