Commit 9e16831e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix the exact same remote DoS as in RTSP stream output

(SETUP without Transport:)
parent db686003
...@@ -924,6 +924,11 @@ static int RtspCallback( httpd_callback_sys_t *p_args, httpd_client_t *cl, ...@@ -924,6 +924,11 @@ static int RtspCallback( httpd_callback_sys_t *p_args, httpd_client_t *cl,
{ {
psz_playnow = httpd_MsgGet( query, "x-playNow" ); psz_playnow = httpd_MsgGet( query, "x-playNow" );
psz_transport = httpd_MsgGet( query, "Transport" ); psz_transport = httpd_MsgGet( query, "Transport" );
if( psz_transport == NULL )
{
answer->i_status = 400;
break;
}
msg_Dbg( p_vod, "HTTPD_MSG_SETUP: transport=%s", psz_transport ); msg_Dbg( p_vod, "HTTPD_MSG_SETUP: transport=%s", psz_transport );
if( strstr( psz_transport, "unicast" ) && if( strstr( psz_transport, "unicast" ) &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment