ignore trailing blank lines in HTTP requests

This commit is contained in:
schmirl 2009-02-13 07:02:18 +00:00
parent 37f2adf02b
commit c26b89f9c2
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
- ignore trailing blank lines in HTTP requests
- fixed parsing Min/MaxPriority from config (thanks to Joachim König-Baltes)
- updated Finnish translation (thanks to Rolf Ahrenberg)
- added Min/MaxPriority parameters. Can be used to keep client VDR from

View File

@ -1,5 +1,5 @@
/*
* $Id: connectionHTTP.c,v 1.15 2009/01/16 11:35:44 schmirl Exp $
* $Id: connectionHTTP.c,v 1.16 2009/02/13 07:02:19 schmirl Exp $
*/
#include <ctype.h>
@ -63,6 +63,9 @@ bool cConnectionHTTP::Command(char *Cmd)
Dprintf("header\n");
return true;
default:
// skip additional blank lines
if (*Cmd == '\0')
return true;
break;
}
return false; // ??? shouldn't happen