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
d935e0c9
Commit
d935e0c9
authored
Jul 29, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bind RTSP to all interfaces by default (refs #270)
parent
c8614afe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
modules/misc/rtsp.c
modules/misc/rtsp.c
+2
-7
No files found.
modules/misc/rtsp.c
View file @
d935e0c9
...
@@ -46,8 +46,8 @@ static void Close( vlc_object_t * );
...
@@ -46,8 +46,8 @@ static void Close( vlc_object_t * );
#define HOST_TEXT N_( "Host address" )
#define HOST_TEXT N_( "Host address" )
#define HOST_LONGTEXT N_( \
#define HOST_LONGTEXT N_( \
"You can set the address, port and path the rtsp interface will bind to." \
"You can set the address, port and path the rtsp interface will bind to." \
"\n Syntax is address:port/path. Default is to bind to
localhost
address "\
"\n Syntax is address:port/path. Default is to bind to
any
address "\
"on port 554, with no path.
Use 0.0.0.0 to bind to all addresses.
" )
"on port 554, with no path." )
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"RTSP VoD"
)
);
set_shortname
(
_
(
"RTSP VoD"
)
);
set_description
(
_
(
"RTSP VoD server"
)
);
set_description
(
_
(
"RTSP VoD server"
)
);
...
@@ -200,11 +200,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -200,11 +200,6 @@ static int Open( vlc_object_t *p_this )
vlc_UrlParse
(
&
url
,
psz_url
,
0
);
vlc_UrlParse
(
&
url
,
psz_url
,
0
);
if
(
psz_url
)
free
(
psz_url
);
if
(
psz_url
)
free
(
psz_url
);
if
(
!
url
.
psz_host
||
!*
url
.
psz_host
)
{
if
(
url
.
psz_host
)
free
(
url
.
psz_host
);
url
.
psz_host
=
strdup
(
"localhost"
);
}
if
(
url
.
i_port
<=
0
)
url
.
i_port
=
554
;
if
(
url
.
i_port
<=
0
)
url
.
i_port
=
554
;
p_vod
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
vod_sys_t
)
);
p_vod
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
vod_sys_t
)
);
...
...
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