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