This commit is contained in:
Thulinma 2010-11-08 21:36:14 +01:00
parent 63c83a4d88
commit eae7cd906c

View file

@ -34,6 +34,7 @@ bool FLV_Isheader(char * header){
bool ReadUntil(char * buffer, unsigned int count, unsigned int & sofar, int sock){
if (sofar >= count){return true;}
bool r = DDV_read(buffer + sofar,count-sofar,sock);
sofar = count;
fprintf(stderr, "Reading %i/%i\n", sofar, count);
if (!r){
All_Hell_Broke_Loose = true;