1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Cover protocol stack RTMP. 3.0.63

This commit is contained in:
winlin 2019-11-22 12:06:15 +08:00
parent 2731afc161
commit 7bd704e695
3 changed files with 49 additions and 3 deletions

View file

@ -68,3 +68,8 @@ void SrsSimpleStream::append(const char* bytes, int size)
data.insert(data.end(), bytes, bytes + size);
}
void SrsSimpleStream::append(SrsSimpleStream* src)
{
append(src->bytes(), src->length());
}