Definition:
#include "httpd.h"
Usage example:
request_rec *r;
if (!is_HTTP_ERROR(r->status)) {
return DONE;
}
Module phase handlers return this status when they have completely satisfied the request. It short-circuits the remainder of the phase and content processing, and only the logging phase will still be invoked.
Previous: DOCUMENT_LOCATION
Next: DYNAMIC_MODULE_LIMIT
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)