#!/bin/sh

if [ -z $3 ]
then
echo Usage: $0 localport remotehost remoteport
echo 
exit 0
fi

nc -l -u -p $1 | drawtool | nc -u $2 $3

