package Apache::AnonProxy;
# file: Apache/AnonProxy.pm
use strict;
use Apache::Constants qw(:common);

my @Remove = qw(user-agent cookie from referer);

sub handler {
    my $r = shift;
    return DECLINED unless $r->proxyreq;
    foreach (@Remove) {
	$r->header_in($_ => undef);
    }	
    return OK;
}

1;
__END__
