![]() |
Home / Documentation / 2.0 / API / | |||
| Apache::Access - A Perl API for Apache request object | ||||
|
|
||
allow_optionsMETA: Autogenerated - needs to be reviewed/completed
Retrieve the value of Options for this request
$ret = $r->allow_options();
$r (Apache::RequestRec)
The current request
$ret (integer)
the Options bitmask
allow_overridesMETA: Autogenerated - needs to be reviewed/completed
Retrieve the value of the AllowOverride for this request
$ret = $r->allow_overrides();
$r (Apache::RequestRec)
The current request
$ret (integer)
the overrides bitmask
get_remote_lognameMETA: Autogenerated - needs to be reviewed/completed
Retrieve the login name of the remote user. Undef if it could not be determined
$ret = $r->get_remote_logname();
$r (Apache::RequestRec)
The current request
$ret (string)
The user logged in to the client machine
note_auth_failureMETA: Autogenerated - needs to be reviewed/completed
Setup the output headers so that the client knows how to authenticate itself the next time, if an authentication request failed. This function works for both basic and digest authentication
$r->note_auth_failure();
$r (Apache::RequestRec)
The current request
note_basic_auth_failureMETA: Autogenerated - needs to be reviewed/completed
Setup the output headers so that the client knows how to authenticate itself the next time, if an authentication request failed. This function works only for basic authentication
$r->note_basic_auth_failure();
$r (Apache::RequestRec)
The current request
note_digest_auth_failureMETA: Autogenerated - needs to be reviewed/completed
Setup the output headers so that the client knows how to authenticate itself the next time, if an authentication request failed. This function works only for digest authentication
$r->note_digest_auth_failure();
$r (Apache::RequestRec)
The current request
satisfiesMETA: Autogenerated - needs to be reviewed/completed
How the requires lines must be met.
$ret = $r->satisfies();
$r (Apache::RequestRec)
The current request
$ret (integer)
How the requirements must be met. One of:
Apache::SATISFY_ANY -- any of the requirements must be met. Apache::SATISFY_ALL -- all of the requirements must be met. Apache::SATISFY_NOSPEC -- There are no applicable satisfy lines
some_auth_requiredMETA: Autogenerated - needs to be reviewed/completed
Can be used within any handler to determine if any authentication is required for the current request
$ret = $r->some_auth_required();
$r (Apache::RequestRec)
The current request
$ret (integer)
1 if authentication is required, 0 otherwise
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 1.1.
|
|