summaryrefslogtreecommitdiffstats
path: root/modules/ping
diff options
context:
space:
mode:
authortv <root@telnet.shack>2010-12-28 21:19:47 +0100
committertv <root@telnet.shack>2010-12-28 21:20:18 +0100
commit6b09e03faff764fef2c867877e410357f43bf543 (patch)
treef74d333612ac7f5cbc734c6c764ca27c76300c8a /modules/ping
parenta71ee8729e83c4a1509e58674ce34e0e57ae7250 (diff)
added modules: ping, pong
Diffstat (limited to 'modules/ping')
-rwxr-xr-xmodules/ping24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/ping b/modules/ping
new file mode 100755
index 00000000..acf2529f
--- /dev/null
+++ b/modules/ping
@@ -0,0 +1,24 @@
+#! /bin/sh
+cd /tmp/noise
+case "$1" in
+ (--help) : ;;
+ ('')
+ . $NOISE_pid/environment
+ ping_timestamp=${ping_timestamp-0}
+ ping_challenger=${ping_challenger-0}
+ if test $ping_challenger != 0 ; then
+ echo There is already a ping challange running
+ else
+ timestamp=`date +%s%N`
+ for client in * ; do
+ echo /ping $NOISE_pid $timestamp >$client/linefeed &
+ done
+ fi
+ ;;
+ (*)
+ echo "/set -q ping_timestamp $2" >$NOISE_pid/linefeed
+ if test $NOISE_pid != $1 ; then
+ echo "/set -q ping_challenger $1" >$NOISE_pid/linefeed
+ echo "PING?"
+ fi
+esac