Apache 1.3 API Documentation

Constant DECLINED

Definition:

#include "httpd.h"
     

Usage example:

request_rec *r;
if (is_HTTP_ERROR(r->status)) { 
    return DECLINED; 
} 
     

This value is returned by modules during request phase processing. It signifies that the module is declining to take responsibility for the current phase, and that the core server should continue invoking other modules.

It's possible for a module to actually take action on the request when invoked, and then return DECLINED in order to let subsequent modules have a chance at it during the current phase. Though possible, this practice is strongly discouraged, and may not be supported in future versions of the server.

See also:
DECLINE_CMD, DONE, OK

Previous: CRLF Next: DECLINE_CMD

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