mod_perl logo
perl icon







previous page: Apache -- A ghost mod_perl 2.0 classpage up: mod_perl APIsnext page: Apache::CmdParms - Perl API for XXX


Apache::Access - A Perl API for Apache request object











mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams


Table of Contents

Synopsis

META: needs to be completed

  use Apache::Access ();


TOP

Description

Apache::Access provides the Perl API for Apache request object.



TOP

API

Apache::Access provides the following functions and/or methods:



TOP

allow_options

META: Autogenerated - needs to be reviewed/completed

Retrieve the value of Options for this request

  $ret = $r->allow_options();


TOP

allow_overrides

META: Autogenerated - needs to be reviewed/completed

Retrieve the value of the AllowOverride for this request

  $ret = $r->allow_overrides();


TOP

get_remote_logname

META: 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();


TOP

note_auth_failure

META: 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();


TOP

note_basic_auth_failure

META: 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();


TOP

note_digest_auth_failure

META: 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();


TOP

satisfies

META: Autogenerated - needs to be reviewed/completed

How the requires lines must be met.

  $ret = $r->satisfies();


TOP

some_auth_required

META: 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();


TOP

See Also

mod_perl 2.0 documentation.



TOP

Copyright

mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 1.1.



TOP

Authors

The mod_perl development team and numerous contributors.







TOP
previous page: Apache -- A ghost mod_perl 2.0 classpage up: mod_perl APIsnext page: Apache::CmdParms - Perl API for XXX