Searched defs:max (Results 1 - 9 of 9) sorted by relevance
/httpd/os/unix/ |
H A D | unixd.c | 66 rlim_t max = 0; local 78 if (!strcasecmp(str, "max")) { 92 max = atol(str); 95 /* if we aren't running as root, cannot increase max */ 98 if (max && (max > limit->rlim_max)) { 102 else if (max) { 103 limit->rlim_max = max; 110 if (max) { 111 limit->rlim_max = max; [all...] |
/httpd/modules/filters/ |
H A D | mod_reqtimeout.c | 42 int header_max_timeout; /* max timeout for req hdrs in secs */ 46 int body_max_timeout; /* max timeout for req body in secs */ 515 int rate = 0, initial = 0, max = 0; local 540 ret = parse_int(p, max_str, &max); 556 if (max && initial >= max) { 562 conf->header_max_timeout = max; 569 conf->body_max_timeout = max;
|
H A D | mod_substitute.c | 655 apr_off_t max; local 659 rv = apr_strtoff(&max, arg, &end, 10); 662 max *= KBYTE; 665 max *= MBYTE; 668 max *= GBYTE; 676 if (rv != APR_SUCCESS || max < 0) 681 dcfg->max_line_length = (apr_size_t)max;
|
/httpd/modules/mappers/ |
H A D | mod_imagemap.c | 135 double max[2], min[2]; local 137 max[0] = coords[0][X]; 141 max[0] = coords[1][X]; 146 max[1] = coords[0][Y]; 150 max[1] = coords[1][Y]; 154 return ((point[X] >= min[0] && point[X] <= max[0]) && 155 (point[Y] >= min[1] && point[Y] <= max[1]));
|
H A D | mod_negotiation.c | 2248 int j, max; local 2253 || !(max = variant->content_languages->nelts)) { 2257 for (j = 0; j < max; ++j) { 2947 * Cache-Control: max-age=N, which we currently don't.
|
/httpd/modules/cache/ |
H A D | mod_cache_socache.c | 113 apr_off_t max; /* maximum file size for cached files */ member in struct:cache_socache_dir_conf 392 if (len > dconf->max) { 396 key, len, dconf->max); 402 if (APR_SUCCESS != store_table(r->headers_out, NULL, dconf->max, &total) 403 || APR_SUCCESS != store_table(r->headers_in, NULL, dconf->max, 408 key, total, dconf->max); 412 if (total >= dconf->max) { 416 key, len, dconf->max); 466 sobj->buffer = apr_palloc(sobj->pool, dconf->max + 1); 467 sobj->buffer_len = dconf->max [all...] |
/httpd/support/ |
H A D | htcacheclean.c | 122 apr_off_t max; member in struct:stats 207 s->max /= KBYTE; 208 if (s->max >= KBYTE) { 210 s->max /= KBYTE; 230 s->max, mtype); 964 static void purge(char *path, apr_pool_t *pool, apr_off_t max, argument 975 s.max = max; 991 if ((!s.max || s.sum <= s.max) 1377 apr_off_t max, inodes, round; local [all...] |
/httpd/modules/lua/ |
H A D | mod_lua.c | 1613 const char *max) 1646 vmax = max ? atoi(max) : 1; 1609 register_lua_scope(cmd_parms *cmd, void *_cfg, const char *scope, const char *min, const char *max) argument
|
/httpd/modules/proxy/ |
H A D | mod_proxy_ftp.c | 609 apr_size_t len, max; local 628 max = sizeof(ctx->buffer) - strlen(ctx->buffer) - 1; 629 if (len > max) { 630 len = max;
|
Completed in 360 milliseconds