Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3b043bf1
Commit
3b043bf1
authored
Sep 05, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing const
parent
02fbd587
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
modules/access_output/bonjour.c
modules/access_output/bonjour.c
+3
-2
modules/access_output/bonjour.h
modules/access_output/bonjour.h
+2
-1
No files found.
modules/access_output/bonjour.c
View file @
3b043bf1
...
...
@@ -26,6 +26,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "bonjour.h"
#ifdef HAVE_AVAHI_CLIENT
#include <vlc_sout.h>
...
...
@@ -188,8 +189,8 @@ static void poll_iterate_thread( poll_thread_t *p_pt )
/*****************************************************************************
* bonjour_start_service
*****************************************************************************/
void
*
bonjour_start_service
(
vlc_object_t
*
p_log
,
char
*
psz_stype
,
char
*
psz_name
,
int
i_port
,
char
*
psz_txt
)
void
*
bonjour_start_service
(
vlc_object_t
*
p_log
,
c
onst
c
har
*
psz_stype
,
const
char
*
psz_name
,
int
i_port
,
char
*
psz_txt
)
{
int
err
;
bonjour_t
*
p_sys
;
...
...
modules/access_output/bonjour.h
View file @
3b043bf1
...
...
@@ -21,5 +21,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
void
*
bonjour_start_service
(
vlc_object_t
*
,
char
*
,
char
*
,
int
,
char
*
);
void
*
bonjour_start_service
(
vlc_object_t
*
,
const
char
*
,
const
char
*
,
int
,
char
*
);
void
bonjour_stop_service
(
void
*
);
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