Lines Matching defs:length
234 apr_size_t length; /* Content-Length value used for keep-alive */
276 int nolength = 0; /* Accept variable document length */
286 apr_size_t postlen = 0; /* length of data to be POSTed */
317 apr_size_t doclen = 0; /* the length the document should be */
326 int err_length = 0; /* requests failed due to response length */
342 /* global request (and its length) */
1418 * let the length check catch any response errors
1582 /* handle NCSA, which sends Content-length: */
1584 cl = strstr(c->cbuff, "Content-length:");
1588 c->length = method != HEAD ? atoi(cl + 16) : 0;
1593 c->length = 0;
1616 if (c->keepalive && (c->bread >= c->length)) {
1642 c->length = 0;
1739 "Content-length: %" APR_SIZE_T_FMT "\r\n"
1986 fprintf(stderr, " -l Accept variable document length (use this for dynamic pages)\n");
2085 /* read data to POST/PUT from file, save contents and length */