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
3814df3b
Commit
3814df3b
authored
Jan 23, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http.c: add an option to disable bonjour (closes #509).
Please review and improve the option text and longtext strings.
parent
3d24634c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
12 deletions
+20
-12
modules/access_output/http.c
modules/access_output/http.c
+20
-12
No files found.
modules/access_output/http.c
View file @
3814df3b
...
...
@@ -82,6 +82,9 @@ static void Close( vlc_object_t * );
#define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " \
"file that will be HTTP/SSL stream output. Leave " \
"empty if you don't have one." )
#define BONJOUR_TEXT N_( "Advertise with Bonjour")
#define BONJOUR_LONGTEXT N_( "Advertise the stream with the Bonjour protocol" )
vlc_module_begin
();
set_description
(
_
(
"HTTP stream output"
)
);
...
...
@@ -106,6 +109,8 @@ vlc_module_begin();
CA_TEXT
,
CA_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"crl"
,
NULL
,
NULL
,
CRL_TEXT
,
CRL_LONGTEXT
,
VLC_TRUE
);
add_bool
(
SOUT_CFG_PREFIX
"bonjour"
,
VLC_FALSE
,
NULL
,
BONJOUR_TEXT
,
BONJOUR_LONGTEXT
,
VLC_TRUE
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
@@ -316,19 +321,21 @@ static int Open( vlc_object_t *p_this )
DIRECTORY_SEPARATOR
);
if
(
psz_name
!=
NULL
)
psz_name
++
;
else
psz_name
=
p_playlist
->
status
.
p_item
->
input
.
psz_uri
;
p_sys
->
p_bonjour
=
bonjour_start_service
(
(
vlc_object_t
*
)
p_access
,
"_vlc-http._tcp"
,
psz_name
,
i_bind_port
,
psz_txt
);
free
(
(
void
*
)
psz_txt
);
if
(
p_sys
->
p_bonjour
==
NULL
)
if
(
config_GetInt
(
p_this
,
SOUT_CFG_PREFIX
"bonjour"
)
)
{
vlc_object_release
(
p_playlist
);
httpd_HostDelete
(
p_sys
->
p_httpd_host
);
free
(
(
void
*
)
p_sys
);
return
VLC_EGENERIC
;
p_sys
->
p_bonjour
=
bonjour_start_service
(
(
vlc_object_t
*
)
p_access
,
"_vlc-http._tcp"
,
psz_name
,
i_bind_port
,
psz_txt
);
free
(
(
void
*
)
psz_txt
);
if
(
p_sys
->
p_bonjour
==
NULL
)
{
vlc_object_release
(
p_playlist
);
httpd_HostDelete
(
p_sys
->
p_httpd_host
);
free
(
(
void
*
)
p_sys
);
return
VLC_EGENERIC
;
}
}
vlc_object_release
(
p_playlist
);
#endif
...
...
@@ -356,7 +363,8 @@ static void Close( vlc_object_t * p_this )
sout_access_out_sys_t
*
p_sys
=
p_access
->
p_sys
;
#ifdef HAVE_AVAHI_CLIENT
bonjour_stop_service
(
p_sys
->
p_bonjour
);
if
(
config_GetInt
(
p_this
,
SOUT_CFG_PREFIX
"bonjour"
)
)
bonjour_stop_service
(
p_sys
->
p_bonjour
);
#endif
/* update p_sout->i_out_pace_nocontrol */
...
...
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