Apache 1.3 API Documentation

Constant DONE

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.

See also:
DECLINED, DECLINE_CMD, OK

Previous: DOCUMENT_LOCATION Next: DYNAMIC_MODULE_LIMIT

Table of Contents (Routines, Structures, Data Cells, Constants)