mod_tls: Bail out if session got destroyed while sending <proceed/>

Can happen in case opportunistic_writes is enabled and the session got
destroyed while writing that tag.

Thanks Ge0rG
This commit is contained in:
Kim Alvefur 2021-04-15 15:57:24 +02:00
parent 1e3a250929
commit 03a1ac4f69

View file

@ -121,6 +121,7 @@ module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event)
local origin = event.origin;
if can_do_tls(origin) then
(origin.sends2s or origin.send)(starttls_proceed);
if origin.destroyed then return end
origin:reset_stream();
origin.conn:starttls(origin.ssl_ctx);
origin.log("debug", "TLS negotiation started for %s...", origin.type);