mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
1e3a250929
commit
03a1ac4f69
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue