Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
66fe9a72
Commit
66fe9a72
authored
Sep 09, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Default RTSP timeout value is 60 seconds, rather than never - closes #1163
parent
30f60c24
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/demux/live555.cpp
modules/demux/live555.cpp
+3
-1
No files found.
modules/demux/live555.cpp
View file @
66fe9a72
...
...
@@ -898,7 +898,9 @@ static int Play( demux_t *p_demux )
/* Retrieve the timeout value and set up a timeout prevention thread */
p_sys
->
i_timeout
=
p_sys
->
rtsp
->
sessionTimeoutParameter
();
if
(
p_sys
->
i_timeout
>
0
&&
!
p_sys
->
p_timeout
)
if
(
p_sys
->
i_timeout
<=
0
)
p_sys
->
i_timeout
=
60
;
/* default value from RFC2326 */
if
(
!
p_sys
->
p_timeout
)
{
msg_Dbg
(
p_demux
,
"We have a timeout of %d seconds"
,
p_sys
->
i_timeout
);
p_sys
->
p_timeout
=
(
timeout_thread_t
*
)
vlc_object_create
(
p_demux
,
sizeof
(
timeout_thread_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