8 lines
108 B
Perl
8 lines
108 B
Perl
#!perl -w
|
|
# this is a simple 'drop packets on the floor' plugin
|
|
|
|
sub hook_logging {
|
|
return DECLINED;
|
|
}
|
|
|