Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
328f68e9
Commit
328f68e9
authored
Jan 15, 2004
by
Laurent Aimar
Browse files
* do not try http 1.0 when we are going to die.
parent
0a9fa091
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/http.c
View file @
328f68e9
...
...
@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001-2004 VideoLAN
* $Id: http.c,v 1.5
4
2004/01/1
4
1
5:40:57
fenrir Exp $
* $Id: http.c,v 1.5
5
2004/01/1
5
1
2:55:41
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -228,7 +228,8 @@ static int Open ( vlc_object_t *p_this )
/* Retry with http 1.0 */
p_sys
->
i_version
=
0
;
if
(
Connect
(
p_input
,
&
p_input
->
stream
.
b_seekable
,
&
p_input
->
stream
.
p_selected_area
->
i_size
,
0
)
)
if
(
p_input
->
b_die
||
Connect
(
p_input
,
&
p_input
->
stream
.
b_seekable
,
&
p_input
->
stream
.
p_selected_area
->
i_size
,
0
)
)
{
goto
error
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment