[FFmpeg-cvslog] libavformat/tls_libtls: pass numeric hostnames to tls_connect_cbs()

Stefan _ git at videolan.org
Wed Mar 7 02:06:35 EET 2018


ffmpeg | branch: master | Stefan _ <sfan5 at live.de> | Wed Feb 21 17:57:00 2018 +0000| [7c39305a174899cbf924ed013c89715b8bddc442] | committer: Jan Ekström

libavformat/tls_libtls: pass numeric hostnames to tls_connect_cbs()

Numeric hosts in certificates are not very common, but supported by LibreSSL.
Forward the IP address to make verification work in this case.

Fixes ticket #7029

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7c39305a174899cbf924ed013c89715b8bddc442
---

 libavformat/tls_libtls.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/tls_libtls.c b/libavformat/tls_libtls.c
index 1321f79229..ba83b56ffe 100644
--- a/libavformat/tls_libtls.c
+++ b/libavformat/tls_libtls.c
@@ -119,7 +119,7 @@ static int ff_tls_open(URLContext *h, const char *uri, int flags, AVDictionary *
 
     if (!c->listen) {
         ret = tls_connect_cbs(p->ctx, tls_read_callback, tls_write_callback,
-            c->tcp, !c->numerichost ? c->host : NULL);
+            c->tcp, c->host);
     } else {
         struct tls *ctx_new;
         ret = tls_accept_cbs(p->ctx, &ctx_new, tls_read_callback,



More information about the ffmpeg-cvslog mailing list