Searched refs:read_limit (Results 1 - 6 of 6) sorted by relevance

/httpd/modules/apreq/
H A Dfilter.c37 dc->read_limit = -1;
52 c->read_limit = (b->read_limit < a->read_limit) /* yes, min */
53 ? b->read_limit : a->read_limit;
80 conf->read_limit = apreq_atoi64f(arg);
135 else if (content_length > ctx->read_limit) {
139 cl_header, ctx->read_limit);
311 if (ctx->bytes_read > ctx->read_limit) {
[all...]
H A Dapreq_private_apache2.h5 apr_uint64_t read_limit; member in struct:dir_config
30 apr_uint64_t read_limit; /* Max bytes the filter may show to parser */ member in struct:filter_ctx
H A Dhandle.c353 if (ctx->read_limit > bytes && ctx->bytes_read < bytes) {
354 ctx->read_limit = bytes;
372 *bytes = ctx->read_limit;
/httpd/server/
H A Dapreq_module_custom.c35 apr_uint64_t read_limit; member in struct:custom_handle
58 if (req->bytes_read > req->read_limit) {
78 if (req->bytes_read > req->read_limit) {
223 *bytes = req->read_limit;
259 apr_uint64_t read_limit,
267 req->read_limit = read_limit;
255 apreq_handle_custom(apr_pool_t *pool, const char *query_string, const char *cookie, apreq_parser_t *parser, apr_uint64_t read_limit, apr_bucket_brigade *in) argument
H A Dapreq_module_cgi.c67 apr_uint64_t read_limit; member in struct:cgi_handle
364 else if ((apr_uint64_t)content_length > req->read_limit) {
369 cl_header, req->read_limit);
445 if (req->bytes_read > req->read_limit) {
450 req->bytes_read, req->read_limit);
471 if (req->bytes_read > req->read_limit) {
476 req->bytes_read, req->read_limit);
883 if (req->read_limit > bytes && req->bytes_read < bytes) {
884 req->read_limit = bytes;
896 *bytes = req->read_limit;
[all...]
/httpd/include/
H A Dapreq_module.h399 * @param read_limit maximum bytes to read from the body
408 apr_uint64_t read_limit,

Completed in 17 milliseconds