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
61cac2cd
Commit
61cac2cd
authored
Aug 19, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add config option to disable album art support in the HTTP interface.
parent
d1b5d5b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
13 deletions
+21
-13
modules/control/http/http.c
modules/control/http/http.c
+21
-13
No files found.
modules/control/http/http.c
View file @
61cac2cd
...
@@ -46,6 +46,10 @@ static void Close( vlc_object_t * );
...
@@ -46,6 +46,10 @@ static void Close( vlc_object_t * );
#define HANDLERS_LONGTEXT N_( \
#define HANDLERS_LONGTEXT N_( \
"List of handler extensions and executable paths (for instance: " \
"List of handler extensions and executable paths (for instance: " \
"php=/usr/bin/php,pl=/usr/bin/perl)." )
"php=/usr/bin/php,pl=/usr/bin/perl)." )
#define ART_TEXT N_( "Export album art as /art." )
#define ART_LONGTEXT N_( \
"Allow exporting album art for current playlist items at the " \
"/art and /art?id=<id> URLs." )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
"(enables SSL)." )
"(enables SSL)." )
...
@@ -68,6 +72,7 @@ vlc_module_begin();
...
@@ -68,6 +72,7 @@ vlc_module_begin();
#if defined( HAVE_FORK ) || defined( WIN32 )
#if defined( HAVE_FORK ) || defined( WIN32 )
add_string
(
"http-handlers"
,
NULL
,
NULL
,
HANDLERS_TEXT
,
HANDLERS_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-handlers"
,
NULL
,
NULL
,
HANDLERS_TEXT
,
HANDLERS_LONGTEXT
,
VLC_TRUE
);
#endif
#endif
add_bool
(
"http-album-art"
,
1
,
NULL
,
ART_TEXT
,
ART_LONGTEXT
,
VLC_TRUE
);
set_section
(
N_
(
"HTTP SSL"
),
0
);
set_section
(
N_
(
"HTTP SSL"
),
0
);
add_string
(
"http-intf-cert"
,
NULL
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-intf-cert"
,
NULL
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-intf-key"
,
NULL
,
NULL
,
KEY_TEXT
,
KEY_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-intf-key"
,
NULL
,
NULL
,
KEY_TEXT
,
KEY_LONGTEXT
,
VLC_TRUE
);
...
@@ -344,21 +349,24 @@ static int Open( vlc_object_t *p_this )
...
@@ -344,21 +349,24 @@ static int Open( vlc_object_t *p_this )
E_
(
ParseDirectory
)(
p_intf
,
psz_src
,
psz_src
);
E_
(
ParseDirectory
)(
p_intf
,
psz_src
,
psz_src
);
/* FIXME: we're leaking h */
if
(
config_GetInt
(
p_intf
,
"http-album-art"
)
)
httpd_handler_sys_t
*
h
=
malloc
(
sizeof
(
httpd_handler_sys_t
)
);
if
(
!
h
)
{
{
msg_Err
(
p_intf
,
"not enough memory to allocate album art handler"
);
/* FIXME: we're leaking h */
goto
failed
;
httpd_handler_sys_t
*
h
=
malloc
(
sizeof
(
httpd_handler_sys_t
)
);
if
(
!
h
)
{
msg_Err
(
p_intf
,
"not enough memory to allocate album art handler"
);
goto
failed
;
}
h
->
file
.
p_intf
=
p_intf
;
h
->
file
.
file
=
NULL
;
h
->
file
.
name
=
NULL
;
/* TODO: use ACL and login/password stuff here too */
h
->
p_handler
=
httpd_HandlerNew
(
p_sys
->
p_httpd_host
,
"/art"
,
NULL
,
NULL
,
NULL
,
E_
(
ArtCallback
),
h
);
TAB_APPEND
(
p_sys
->
i_handlers
,
p_sys
->
pp_handlers
,
h
->
p_handler
);
}
}
h
->
file
.
p_intf
=
p_intf
;
h
->
file
.
file
=
NULL
;
h
->
file
.
name
=
NULL
;
/* TODO: use ACL and login/password stuff here too */
h
->
p_handler
=
httpd_HandlerNew
(
p_sys
->
p_httpd_host
,
"/art"
,
NULL
,
NULL
,
NULL
,
E_
(
ArtCallback
),
h
);
TAB_APPEND
(
p_sys
->
i_handlers
,
p_sys
->
pp_handlers
,
h
->
p_handler
);
if
(
p_sys
->
i_files
<=
0
)
if
(
p_sys
->
i_files
<=
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