mod_perl logo
perl icon







previous page: Apache::Constants - Constants defined in apache header filespage up: mod_perl APInext page: Apache::Table - Perl interface to the Apache table structure


Apache::Options - OPT_* defines from httpd_core.h











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
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet


Table of Contents

Synopsis

   use Apache::Options;


TOP

Description

The Apache::Options module will export the following bitmask constants:

  OPT_NONE
  OPT_INDEXES
  OPT_INCLUDES
  OPT_SYMLINKS
  OPT_EXECCGI
  OPT_UNSET
  OPT_INCNOEXEC
  OPT_SYM_OWNER
  OPT_MULTI
  OPT_ALL

These constants can be used to check the return value from Apache->request->allow_options() method.

This module is simply a stub which imports from Apache::Constants, just as if you had said use Apache::Constants ':options';.



TOP

Maintainers

Maintainer is the person(s) you should contact with updates, corrections and patches.



TOP

Authors

Only the major authors are listed above. For contributors see the Changes file.



TOP

See Also

Apache, Apache::Constants







TOP
previous page: Apache::Constants - Constants defined in apache header filespage up: mod_perl APInext page: Apache::Table - Perl interface to the Apache table structure