The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

Synopsis

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

Description

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

API

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

name

META: to be written

next

META: to be written

See Also

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