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:
Kim Alvefur 2021-06-10 11:55:40 -01:56
parent 2f7da2c6ea
commit 672f9dcd63

View file

@ -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;