Apache::Proxy - Perl interface to mod_proxy


Apache-Proxy documentation Contained in the Apache-Proxy distribution.

Index


Code Index:

NAME

Top

Apache::Proxy - Perl interface to mod_proxy

SYNOPSIS

Top

  use Apache::Proxy ();

DESCRIPTION

Top

    my $status = Apache::Proxy->pass($r, "http://perl.apache.org/"); 
    my $hashfile = Apache::Proxy->proxy_hash($r, $url);

AUTHOR

Top

Doug MacEachern, Ilya Obshadko

SEE ALSO

Top

perl(1).


Apache-Proxy documentation Contained in the Apache-Proxy distribution.

package Apache::Proxy;

use strict;
use vars qw($VERSION @ISA);

use DynaLoader ();

@ISA = qw(DynaLoader);

$VERSION = '0.02';

if($ENV{MOD_PERL}) {
    bootstrap Apache::Proxy $VERSION;
}

1;
__END__