aboutsummaryrefslogtreecommitdiffstats
path: root/share/hackvr/examples/hackvrd/ident
diff options
context:
space:
mode:
Diffstat (limited to 'share/hackvr/examples/hackvrd/ident')
-rwxr-xr-xshare/hackvr/examples/hackvrd/ident16
1 files changed, 0 insertions, 16 deletions
diff --git a/share/hackvr/examples/hackvrd/ident b/share/hackvr/examples/hackvrd/ident
deleted file mode 100755
index f4e7599..0000000
--- a/share/hackvr/examples/hackvrd/ident
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-if [ $# -lt 4 ];then
- echo usage: ident.sh our-host their-host 113 their-port our-port
- exit 1
-fi
-REMOTE_PORT="$4"
-SERVER_PORT="$5"
-IDENT_PORT="$3"
-REMOTE_ADDR="$2"
-SERVER_ADDR="$1"
-username="$(printf "%s, %s\r\n" "$REMOTE_PORT" "$SERVER_PORT" | (ncat -s "$SERVER_ADDR" "$REMOTE_ADDR" "$IDENT_PORT" 2>/dev/null || echo 'ERROR:ERROR:ERROR:ERROR') | tr -d '\r' | cut -d: -f4)"
-if [ "$username" ];then
- printf "%s\n" "$username"
-else
- exit 1
-fi