Searched defs:rate (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/filters/
H A Dmod_reqtimeout.c43 int header_min_rate; /* min rate for reading req hdrs in bytes/s */
47 int body_min_rate; /* min rate for reading req body in bytes/s */
515 int rate = 0, initial = 0, max = 0; local
531 ret = parse_int(p, rate_str, &rate);
535 if (rate == 0)
536 return "Minimum data rate must be larger than 0";
563 conf->header_min_rate = rate;
564 if (rate)
565 conf->header_rate_factor = apr_time_from_sec(1) / rate;
570 conf->body_min_rate = rate;
[all...]

Completed in 12 milliseconds