Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
c4c497c7
Commit
c4c497c7
authored
Sep 10, 2003
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless stuff for icecast
parent
eb409d25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/access/http.c
modules/access/http.c
+3
-5
No files found.
modules/access/http.c
View file @
c4c497c7
...
...
@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.4
4 2003/09/10 13:39:29
zorglub Exp $
* $Id: http.c,v 1.4
5 2003/09/10 15:50:25
zorglub Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -731,8 +731,7 @@ static int Open( vlc_object_t *p_this )
p_access_data
->
socket_desc
.
i_ttl
=
0
;
snprintf
(
p_access_data
->
psz_buffer
,
MAX_QUERY_SIZE
,
"GET http://%s:%d/%s HTTP/1.0
\r\n
"
\
"Icy-Metadata:0
\r\n
"
,
"GET http://%s:%d/%s HTTP/1.0
\r\n
"
,
psz_server_addr
,
i_server_port
,
psz_path
);
}
else
...
...
@@ -744,8 +743,7 @@ static int Open( vlc_object_t *p_this )
p_access_data
->
socket_desc
.
i_ttl
=
0
;
snprintf
(
p_access_data
->
psz_buffer
,
MAX_QUERY_SIZE
,
"GET /%s HTTP/1.1
\r\n
Host: %s
\r\n
"
\
"Icy-Metadata:0
\r\n
"
,
"GET /%s HTTP/1.1
\r\n
Host: %s
\r\n
"
,
psz_path
,
psz_server_addr
);
}
p_access_data
->
psz_buffer
[
MAX_QUERY_SIZE
-
1
]
=
'\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