summaryrefslogtreecommitdiffstats
path: root/qa/ct_echo_event.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qa/ct_echo_event.sh')
-rwxr-xr-xqa/ct_echo_event.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/qa/ct_echo_event.sh b/qa/ct_echo_event.sh
deleted file mode 100755
index b4d7409..0000000
--- a/qa/ct_echo_event.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-. `dirname $0`/nssocket_env.sh
-
-echo "---- TCP echo"
-pre_sync
-echo | nc -q 0 $VETH_CHILD_ADDR $DSTPORT
-post_sync
-
-echo "---- UDP echo"
-pre_sync
-echo | nc -q 0 -u $VETH_CHILD_ADDR $DSTPORT
-post_sync
-
-echo "---- ICMP echo"
-pre_sync
-ping -c 1 $VETH_CHILD_ADDR > /dev/null 2>&1
-post_sync
-
-fin