mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
lavf/tls_gnutls: retry gnutls_handshake on non fatal errors
fixes #7801 Signed-off-by: Remita Amine <remitamine@gmail.com>
This commit is contained in:
parent
c9c1711f49
commit
bc1749c6e4
@ -182,11 +182,13 @@ static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **op
|
||||
gnutls_transport_set_push_function(p->session, gnutls_url_push);
|
||||
gnutls_transport_set_ptr(p->session, c->tcp);
|
||||
gnutls_priority_set_direct(p->session, "NORMAL", NULL);
|
||||
ret = gnutls_handshake(p->session);
|
||||
if (ret) {
|
||||
ret = print_tls_error(h, ret);
|
||||
goto fail;
|
||||
}
|
||||
do {
|
||||
ret = gnutls_handshake(p->session);
|
||||
if (gnutls_error_is_fatal(ret)) {
|
||||
ret = print_tls_error(h, ret);
|
||||
goto fail;
|
||||
}
|
||||
} while (ret);
|
||||
p->need_shutdown = 1;
|
||||
if (c->verify) {
|
||||
unsigned int status, cert_list_size;
|
||||
|
Loading…
Reference in New Issue
Block a user