[vlc-commits] Deactivate HTTP proxy inheritance from IE
Jean-Baptiste Kempf
git at videolan.org
Fri Apr 6 12:28:10 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Apr 6 12:19:42 2012 +0200| [457fda26b42a7a6cbc9d6149cc53e92979ace83d] | committer: Jean-Baptiste Kempf
Deactivate HTTP proxy inheritance from IE
The parsing is not complete enough to be on by default.
http-use-IE-proxy option was removed in ac40aef7f6252
Should close/delay #5782
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=457fda26b42a7a6cbc9d6149cc53e92979ace83d
---
modules/access/http.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/access/http.c b/modules/access/http.c
index 507143e..9817bca 100644
--- a/modules/access/http.c
+++ b/modules/access/http.c
@@ -110,6 +110,7 @@ vlc_module_begin ()
false )
add_password( "http-proxy-pwd", NULL,
PROXY_PASS_TEXT, PROXY_PASS_LONGTEXT, false )
+ add_obsolete_bool( "http-use-IE-proxy" )
add_string( "http-referrer", NULL, REFERER_TEXT, REFERER_LONGTEXT, false )
change_safe()
add_string( "http-user-agent", NULL, UA_TEXT, UA_LONGTEXT, false )
@@ -401,7 +402,7 @@ static int OpenWithCookies( vlc_object_t *p_this, const char *psz_access,
msg_Err(p_access, "Allocating memory for libproxy failed");
}
}
-#elif defined( WIN32 )
+#elif (0) // defined( WIN32 ) The parsing is not complete enough
else
{
/* Try to get the proxy server address from Windows internet settings using registry. */
More information about the vlc-commits
mailing list