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
ab5f8e94
Commit
ab5f8e94
authored
May 25, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VOD: missing "unicast;" in SETUP Transport response header
parent
17fa368e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/misc/rtsp.c
modules/misc/rtsp.c
+3
-3
No files found.
modules/misc/rtsp.c
View file @
ab5f8e94
...
...
@@ -1405,20 +1405,20 @@ static int RtspCallbackES( httpd_callback_sys_t *p_args, httpd_client_t *cl,
if
(
strstr
(
psz_transport
,
"MP2T/H2221/UDP"
)
)
{
httpd_MsgAdd
(
answer
,
"Transport"
,
"MP2T/H2221/UDP;client_port=%d-%d"
,
"MP2T/H2221/UDP;
unicast;
client_port=%d-%d"
,
p_rtsp_es
->
i_port
,
p_rtsp_es
->
i_port
+
1
);
}
else
if
(
strstr
(
psz_transport
,
"RAW/RAW/UDP"
)
)
{
httpd_MsgAdd
(
answer
,
"Transport"
,
"RAW/RAW/UDP;client_port=%d-%d"
,
"RAW/RAW/UDP;
unicast;
client_port=%d-%d"
,
p_rtsp_es
->
i_port
,
p_rtsp_es
->
i_port
+
1
);
}
}
else
{
httpd_MsgAdd
(
answer
,
"Transport"
,
"RTP/AVP/UDP;client_port=%d-%d"
,
"RTP/AVP/UDP;
unicast;
client_port=%d-%d"
,
p_rtsp_es
->
i_port
,
p_rtsp_es
->
i_port
+
1
);
}
}
...
...
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