Merge branch 'development' into LTS_development

This commit is contained in:
Thulinma 2020-09-24 19:49:55 +02:00
commit 670f27a34e

View file

@ -708,6 +708,9 @@ bool HTTP::Parser::parse(std::string &HTTPbuffer, Util::DataCallback &cb){
}
return false;
}else{
if (protocol.substr(0, 4) == "RTSP" || method.substr(0,4) == "RTSP"){
return true;
}
unsigned int toappend = HTTPbuffer.size();
bool shouldAppend = true;
if (bodyCallback){