summaryrefslogtreecommitdiffstats
path: root/lib/Smokeping/probes
diff options
context:
space:
mode:
authorNiko Tyni <ntyni@iki.fi>2007-04-14 20:11:42 +0200
committerNiko Tyni <ntyni@iki.fi>2007-04-14 20:11:42 +0200
commitee78a2434ef77fdce97546aca173ebbd0391676a (patch)
tree0abda9cfe368fbda18ff4cbf8587670d3ba61408 /lib/Smokeping/probes
parentc3c3661714df4dd4eaefd4c8bb9573f873d78461 (diff)
downloadsmokeping-ee78a2434ef77fdce97546aca173ebbd0391676a.tar.gz
smokeping-ee78a2434ef77fdce97546aca173ebbd0391676a.tar.xz
r1041@rispa: niko | 2007-04-14 08:14:10 +0300
targetvars skeleton
Diffstat (limited to 'lib/Smokeping/probes')
-rw-r--r--lib/Smokeping/probes/EchoPingPlugin.pm9
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;