MT#55283 fix: add guard to avoid packet sent on shutdown on already dead streams

closes #2147
closes #2146

Change-Id: Id94e5ed52dbfe0a8e86b5f90c425edd3832116ea
pull/2149/head
Gustavo Almeida 1 week ago committed by Richard Fuchs
parent 943f897eb4
commit f99cffb245

@ -646,6 +646,8 @@ static long dtls_bio_callback(BIO *bio, int oper, const char *argp, size_t len,
struct stream_fd *sfd = d->sfd;
if (!sfd)
return ret;
if (!sfd->socket.family)
return ret;
__DBG("dtls packet output: len %zu %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
len,

Loading…
Cancel
Save