Commit d6cd7844 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove non-standard http4 and http6.

It's the DNS job to tell which version are available,
not poor clueless average user's.
parent 6edb730d
......@@ -84,8 +84,6 @@ vlc_module_begin();
CONTINUOUS_LONGTEXT, VLC_TRUE );
add_shortcut( "http" );
add_shortcut( "http4" );
add_shortcut( "http6" );
add_shortcut( "https" );
add_shortcut( "unsv" );
set_callbacks( Open, Close );
......@@ -155,32 +153,6 @@ static int Open( vlc_object_t *p_this )
access_sys_t *p_sys;
char *psz;
/* First set ipv4/ipv6 */
var_Create( p_access, "ipv4", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
var_Create( p_access, "ipv6", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
if( *p_access->psz_access )
{
vlc_value_t val;
/* Find out which shortcut was used */
if( !strncmp( p_access->psz_access, "http4", 6 ) )
{
val.b_bool = VLC_TRUE;
var_Set( p_access, "ipv4", val );
val.b_bool = VLC_FALSE;
var_Set( p_access, "ipv6", val );
}
else if( !strncmp( p_access->psz_access, "http6", 6 ) )
{
val.b_bool = VLC_TRUE;
var_Set( p_access, "ipv6", val );
val.b_bool = VLC_FALSE;
var_Set( p_access, "ipv4", val );
}
}
/* Set up p_access */
p_access->pf_read = Read;
p_access->pf_block = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment