Searched defs:limit (Results 1 - 8 of 8) sorted by relevance
/httpd/os/unix/ |
H A D | unixd.c | 63 struct rlimit *limit; local 69 limit = *plimit; 70 if ((getrlimit(type, limit)) != 0) { 79 cur = limit->rlim_max; 97 limit->rlim_cur = cur; 98 if (max && (max > limit->rlim_max)) { 103 limit->rlim_max = max; 108 limit->rlim_cur = cur; 111 limit->rlim_max = max;
|
/httpd/modules/ssl/ |
H A D | ssl_ct_util.c | 188 apr_off_t limit, 215 if (finfo.size > limit) { 219 "limit (%" APR_SIZE_T_FMT ")", finfo.size, fn, limit); 185 ctutil_read_file(apr_pool_t *p, server_rec *s, const char *fn, apr_off_t limit, char **contents, apr_size_t *contents_size) argument
|
/httpd/support/ |
H A D | firehose.c | 61 int limit; member in struct:file_rec 317 * guaranteed never to hit a file handle limit (within reason). 572 if (file->limit) { 726 file->limit++;
|
/httpd/modules/http/ |
H A D | http_filters.c | 65 apr_off_t limit; member in struct:http_filter_ctx 259 * Would adding a directive to limit the size of proxied 263 ctx->limit = ap_get_limit_req_body(f->r); 266 ctx->limit = 0; 318 /* If we have a limit in effect and we know the C-L ahead of 321 if (ctx->limit && ctx->limit < ctx->remaining) { 325 " is larger than the configured limit" 326 " of %" APR_OFF_T_FMT, ctx->remaining, ctx->limit); 518 /* We have a limit i [all...] |
/httpd/server/ |
H A D | apreq_module_cgi.c | 368 "max_body limit (%" APR_UINT64_T_FMT ")", 449 ") exceeds configured limit (%" APR_UINT64_T_FMT ")", 475 ") exceeds configured limit (%" APR_UINT64_T_FMT ")", 855 apr_size_t *limit = (req->parser == NULL) local 859 if (*limit > bytes) { 860 *limit = bytes;
|
H A D | core.c | 3463 "\" must be a non-negative integer (0 = no limit)", 3644 int limit = atoi(arg1); local 3646 if (limit <= 0) { 3647 return "The recursion limit must be greater than zero."; 3649 if (limit < 4) { 3655 conf->redirect_limit = limit; 3658 limit = atoi(arg2); 3660 if (limit <= 0) { 3661 return "The recursion limit must be greater than zero."; 3663 if (limit < [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy_http.c | 540 apr_off_t limit; local 544 limit = ap_get_limit_req_body(r); 571 if (limit && (bytes_spooled + bytes > limit)) { 574 "limit of %" APR_OFF_T_FMT, limit); 1283 * this limit send back a 502 (Bad Gateway).
|
H A D | proxy_util.c | 3049 * have to impose a limit on the number of workers, we are 3173 * since our upper limit is always max_workers 3237 unsigned int i, limit; local 3238 limit = storage->num_slots(slot); 3239 for (i = 0; i < limit; i++) { 3258 unsigned int i, limit; local 3259 limit = storage->num_slots(slot); 3260 for (i = 0; i < limit; i++) {
|
Completed in 251 milliseconds