Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2c7fa286
Commit
2c7fa286
authored
Sep 17, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark http-user-agent private
Modifying from the configuration won't work anyway (since VLC overrides it).
parent
dadb0622
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
modules/access/http.c
modules/access/http.c
+2
-7
No files found.
modules/access/http.c
View file @
2c7fa286
...
...
@@ -83,10 +83,6 @@ static void Close( vlc_object_t * );
"Caching value for HTTP streams. This " \
"value should be set in milliseconds." )
#define AGENT_TEXT N_("HTTP user agent")
#define AGENT_LONGTEXT N_("User agent that will be " \
"used for the connection.")
#define RECONNECT_TEXT N_("Auto re-connect")
#define RECONNECT_LONGTEXT N_( \
"Automatically try to reconnect to the stream in case of a sudden " \
...
...
@@ -123,10 +119,9 @@ vlc_module_begin ()
add_integer
(
"http-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_string
(
"http-user-agent"
,
NULL
,
NULL
,
AGENT_TEXT
,
AGENT_LONGTEXT
,
true
)
add_string
(
"http-user-agent"
,
NULL
,
NULL
,
NULL
,
NULL
,
false
)
change_safe
()
change_
need_restart
()
change_
private
()
add_bool
(
"http-reconnect"
,
false
,
NULL
,
RECONNECT_TEXT
,
RECONNECT_LONGTEXT
,
true
)
add_bool
(
"http-continuous"
,
false
,
NULL
,
CONTINUOUS_TEXT
,
...
...
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