mod_perl logo
perl icon







previous page: Apache::Filter -- A Perl API for Apache 2.0 Filteringpage up: mod_perl APIsnext page: Apache::Log -- Perl API for Apache Logging Methods


Apache::FilterRec -- A Perl API for Apache 2.0 Filter Records











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

  use Apache::FilterRec;
  # ...
  sub filter {
      my $f      = shift;
      my $frec   = $f->frec;
      my $next_f = $frec->next;
      my $name   = $frec->name;
      # ...
  }


TOP

Description

Apache::FilterRec provides the Perl API for Apache 2.0 filter records.



TOP

API

Function arguments (if any) and return values are shown in the function's synopsis.



TOP

name

META: to be written



TOP

next

META: to be written



TOP

See Also

The filter handlers tutorial and the Apache::Filter manpage.







TOP
previous page: Apache::Filter -- A Perl API for Apache 2.0 Filteringpage up: mod_perl APIsnext page: Apache::Log -- Perl API for Apache Logging Methods