mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
rtsp: ignore \n and \r as the first line
Be more forgiving for bad servers and ignore \r and \n when we are looking for the response/request line. See #608417
This commit is contained in:
parent
be037e0dc8
commit
30fd219e63
1 changed files with 10 additions and 1 deletions
|
@ -1834,22 +1834,31 @@ build_next (GstRTSPBuilder * builder, GstRTSPMessage * message,
|
|||
while (TRUE) {
|
||||
switch (builder->state) {
|
||||
case STATE_START:
|
||||
{
|
||||
guint8 c;
|
||||
|
||||
builder->offset = 0;
|
||||
res =
|
||||
read_bytes (conn, (guint8 *) builder->buffer, &builder->offset, 1);
|
||||
if (res != GST_RTSP_OK)
|
||||
goto done;
|
||||
|
||||
c = builder->buffer[0];
|
||||
|
||||
/* we have 1 bytes now and we can see if this is a data message or
|
||||
* not */
|
||||
if (builder->buffer[0] == '$') {
|
||||
if (c == '$') {
|
||||
/* data message, prepare for the header */
|
||||
builder->state = STATE_DATA_HEADER;
|
||||
} else if (c == '\n' || c == '\r') {
|
||||
/* skip \n and \r */
|
||||
builder->offset = 0;
|
||||
} else {
|
||||
builder->line = 0;
|
||||
builder->state = STATE_READ_LINES;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case STATE_DATA_HEADER:
|
||||
{
|
||||
res =
|
||||
|
|
Loading…
Reference in a new issue