Lines Matching defs:limit
3463 "\" must be a non-negative integer (0 = no limit)",
3644 int limit = atoi(arg1);
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 < 4) {
3670 conf->subreq_limit = limit;
3700 * check whether redirect limit is reached
3721 "Request exceeded the limit of %d internal "
3724 "limit if necessary. Use 'LogLevel debug' to get "
3741 "Request exceeded the limit of %d subrequest "
3744 "the limit if necessary. Use 'LogLevel debug' to "