mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
GnuTLS: eat PREMATURE_TERMINATION error
GnuTLS is too strict on the SSL shutdown alert, and it's neither mandatory in the spec or critical. As it's ignored in OpenSSL, we should also suppress it in GnuTLS as well. Ticket: #6667 Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
5a3b602acd
commit
598e416840
1 changed files with 1 additions and 0 deletions
|
|
@ -72,6 +72,7 @@ static int print_tls_error(URLContext *h, int ret)
|
|||
switch (ret) {
|
||||
case GNUTLS_E_AGAIN:
|
||||
case GNUTLS_E_INTERRUPTED:
|
||||
case GNUTLS_E_PREMATURE_TERMINATION:
|
||||
break;
|
||||
case GNUTLS_E_WARNING_ALERT_RECEIVED:
|
||||
av_log(h, AV_LOG_WARNING, "%s\n", gnutls_strerror(ret));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue