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
db1a5bd2
Commit
db1a5bd2
authored
Oct 09, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http output: fix bonjour advertising
parent
3c3678f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
modules/access_output/http.c
modules/access_output/http.c
+12
-7
No files found.
modules/access_output/http.c
View file @
db1a5bd2
...
...
@@ -278,9 +278,9 @@ static int Open( vlc_object_t *p_this )
p_sys
->
p_httpd_stream
=
httpd_StreamNew
(
p_sys
->
p_httpd_host
,
psz_file_name
,
psz_mime
,
psz_user
,
psz_pwd
,
NULL
);
if
(
psz_user
)
free
(
psz_user
);
if
(
psz_pwd
)
free
(
psz_pwd
);
if
(
psz_mime
)
free
(
psz_mime
);
free
(
psz_user
);
free
(
psz_pwd
);
free
(
psz_mime
);
if
(
p_sys
->
p_httpd_stream
==
NULL
)
{
...
...
@@ -304,19 +304,24 @@ static int Open( vlc_object_t *p_this )
if
(
psz_name
!=
NULL
)
psz_name
++
;
else
psz_name
=
psz_newuri
;
asprintf
(
&
psz_txt
,
"path=%s"
,
psz_name
);
free
(
psz_uri
);
if
(
psz_file_name
&&
asprintf
(
&
psz_txt
,
"path=%s"
,
psz_file_name
)
==
-
1
)
{
pl_Release
(
p_playlist
);
free
(
psz_uri
);
return
VLC_ENOMEM
;
}
p_sys
->
p_bonjour
=
bonjour_start_service
(
(
vlc_object_t
*
)
p_access
,
strcmp
(
p_access
->
psz_access
,
"https"
)
?
"_vlc-http._tcp"
:
"_vlc-https._tcp"
,
psz_name
,
i_bind_port
,
psz_txt
);
free
(
psz_uri
);
free
(
(
void
*
)
psz_txt
);
if
(
p_sys
->
p_bonjour
==
NULL
)
msg_Err
(
p_access
,
"unable to start requested Bonjour announce"
);
vlc_object_r
elease
(
p_playlist
);
pl_R
elease
(
p_playlist
);
}
else
p_sys
->
p_bonjour
=
NULL
;
...
...
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