comparison http.c @ 6152:b9dee5077174 libavformat

HTTP: Clarify a comment
author mstorsjo
date Mon, 21 Jun 2010 18:40:53 +0000
parents 8634f4b534fc
children 2e07dcbab954
comparison
equal deleted inserted replaced
6151:8634f4b534fc 6152:b9dee5077174
432 } 432 }
433 if (!s->hd) 433 if (!s->hd)
434 return AVERROR(EIO); 434 return AVERROR(EIO);
435 435
436 if (s->chunksize == -1) { 436 if (s->chunksize == -1) {
437 /* headers are sent without any special encoding */ 437 /* non-chunked data is sent without any special encoding */
438 return url_write(s->hd, buf, size); 438 return url_write(s->hd, buf, size);
439 } 439 }
440 440
441 /* silently ignore zero-size data since chunk encoding that would 441 /* silently ignore zero-size data since chunk encoding that would
442 * signal EOF */ 442 * signal EOF */