14 lines
186 B
Plaintext
14 lines
186 B
Plaintext
|
#!/usr/bin/perl
|
||
|
# this is a simple 'drop packets on the floor' plugin
|
||
|
|
||
|
sub register {
|
||
|
my $self = shift;
|
||
|
|
||
|
$self->register_hook('logging', 'wlog');
|
||
|
}
|
||
|
|
||
|
sub wlog {
|
||
|
return DECLINED;
|
||
|
}
|
||
|
|