[vlc-commits] http: do not redirect HTTPS to MMSH

Rémi Denis-Courmont git at videolan.org
Sun Dec 20 16:22:12 CET 2015


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Dec 20 17:18:17 2015 +0200| [2a1756d332b38ed65873ae30714ae7bac2da1b7a] | committer: Rémi Denis-Courmont

http: do not redirect HTTPS to MMSH

There is no support for TLS in the current MMS plug-in.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2a1756d332b38ed65873ae30714ae7bac2da1b7a
---

 modules/access/http.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/http.c b/modules/access/http.c
index e6a549c..d220933 100644
--- a/modules/access/http.c
+++ b/modules/access/http.c
@@ -460,7 +460,7 @@ connect:
         return VLC_ACCESS_REDIRECT;
     }
 
-    if( p_sys->b_mms )
+    if( p_sys->p_creds == NULL && p_sys->b_mms )
     {
         msg_Dbg( p_access, "this is actually a live mms server, BAIL" );
         goto error;



More information about the vlc-commits mailing list