in flood_round_robin.c [1288:1305]
apr_status_t verify_status_code(int *verified, profile_t *profile,
request_t *req, response_t *resp)
{
const char delimiter = ' ';
char *state, *protocol, *scode;
protocol = apr_strtok(resp->rbuf, &delimiter, &state);
scode = apr_strtok(NULL, &delimiter, &state);
if (scode[0] == '2' || scode[0] == '3') {
*verified = FLOOD_VALID;
}
else {
*verified = FLOOD_INVALID;
}
return APR_SUCCESS;
}