diff options
-rw-r--r-- | lib/Smokeping/probes/EchoPingPlugin.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Smokeping/probes/EchoPingPlugin.pm b/lib/Smokeping/probes/EchoPingPlugin.pm index e54c02b..36ca359 100644 --- a/lib/Smokeping/probes/EchoPingPlugin.pm +++ b/lib/Smokeping/probes/EchoPingPlugin.pm @@ -72,5 +72,14 @@ sub ProbeDesc($) { return "Pings using an echoping(1) plugin"; } +sub targetvars { + my $class = shift; + my $h = $class->SUPER::targetvars; + delete $h->{udp}; + delete $h->{fill}; + delete $h->{size}; + return $class->_makevars($h, { + }); +} 1; |