| Apache-Proxy documentation | Contained in the Apache-Proxy distribution. |
Apache::Proxy - Perl interface to mod_proxy
use Apache::Proxy ();
my $status = Apache::Proxy->pass($r, "http://perl.apache.org/");
my $hashfile = Apache::Proxy->proxy_hash($r, $url);
Doug MacEachern, Ilya Obshadko
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__