Moxy::Plugin::RefererCutter - remove referer


Moxy documentation Contained in the Moxy distribution.

Index


Code Index:

NAME

Top

Moxy::Plugin::RefererCutter - remove referer

DESCRIPTION

Top

do not send referer.

AUTHOR

Top

Tokuhiro Matsuno

SEE ALSO

Top

Moxy


Moxy documentation Contained in the Moxy distribution.

package Moxy::Plugin::RefererCutter;
use strict;
use warnings;
use base qw/Moxy::Plugin/;

sub request_filter :Hook {
    my ($self, $context, $args) = @_;

    $args->{request}->remove_header('Referer');
}

1;
__END__