Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
368b29b1
Commit
368b29b1
authored
Jul 24, 2002
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/access/http.c: we are now parsing the http return code and
failing cleanly if it is >= 400
parent
9ecfdd4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
1 deletion
+39
-1
plugins/access/http.c
plugins/access/http.c
+39
-1
No files found.
plugins/access/http.c
View file @
368b29b1
...
...
@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.1
6 2002/07/23 20:32:55 massiot
Exp $
* $Id: http.c,v 1.1
7 2002/07/24 18:31:24 sigmunau
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -120,6 +120,8 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
module_t
*
p_network
;
char
psz_buffer
[
256
];
byte_t
*
psz_parser
;
int
i_returncode
,
i
;
char
*
psz_return_alpha
;
/* Find an appropriate network module */
p_network
=
module_Need
(
p_input
,
MODULE_CAPABILITY_NETWORK
,
...
...
@@ -178,6 +180,42 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
/* Parse HTTP header. */
#define MAX_LINE 1024
/* get the returncode */
if
(
input_Peek
(
p_input
,
&
psz_parser
,
MAX_LINE
)
<=
0
)
{
msg_Err
(
p_input
,
"not enough data"
);
input_FDNetworkClose
(
p_input
);
return
(
-
1
);
}
if
(
!
strncmp
(
psz_parser
,
"HTTP/1."
,
strlen
(
"HTTP/1."
)
)
)
{
psz_parser
+=
strlen
(
"HTTP 1."
)
+
2
;
i_returncode
=
atoi
(
psz_parser
);
msg_Dbg
(
p_input
,
"HTTP server replied: %i"
,
i_returncode
);
psz_parser
+=
4
;
for
(
i
=
0
;
psz_parser
[
i
]
!=
'\r'
||
psz_parser
[
i
+
1
]
!=
'\n'
;
i
++
)
{
;
}
psz_return_alpha
=
malloc
(
i
+
1
);
memcpy
(
psz_return_alpha
,
psz_parser
,
i
);
psz_return_alpha
[
i
]
=
'\0'
;
}
else
{
msg_Err
(
p_input
,
"http error: invalid http reply"
);
return
-
1
;
}
if
(
i_returncode
>=
400
)
/* something is wrong */
{
msg_Err
(
p_input
,
"%i %s"
,
i_returncode
,
psz_return_alpha
);
return
-
1
;
}
for
(
;
;
)
{
if
(
input_Peek
(
p_input
,
&
psz_parser
,
MAX_LINE
)
<=
0
)
...
...
Write
Preview
Markdown
is supported
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