mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add missing method for changing TLS context
Supported by the other net.server implementations already, but not used anywhere in Prosody.
This commit is contained in:
parent
2f7da2c6ea
commit
672f9dcd63
1 changed files with 4 additions and 0 deletions
|
@ -543,6 +543,10 @@ function interface:ssl()
|
|||
return self._tls;
|
||||
end
|
||||
|
||||
function interface:set_sslctx(sslctx)
|
||||
self._sslctx = sslctx;
|
||||
end
|
||||
|
||||
function interface:starttls(tls_ctx)
|
||||
if tls_ctx then self.tls_ctx = tls_ctx; end
|
||||
self.starttls = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue