fix nc compatible. try '-p' first

This commit is contained in:
neil 2016-03-13 16:14:15 +08:00
parent 051c706d78
commit 3aff11f629
1 changed files with 6 additions and 8 deletions

14
le.sh
View File

@ -346,19 +346,17 @@ _startserver() {
if echo "$nchelp" | grep "nmap.org/ncat" >/dev/null ; then
_NC="nc -l"
fi
#debian
ncver="$(nc --version 2>&1)"
if echo "$ncver" | grep "http://www.deepspace6.net" > /dev/null ; then
_NC="$_NC -p"
fi
_debug "$_NC $Le_HTTPPort"
# while true ; do
if [ "$DEBUG" ] ; then
echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC $Le_HTTPPort -vv
if ! echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC -p $Le_HTTPPort -vv ; then
echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC $Le_HTTPPort -vv ;
fi
else
echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC $Le_HTTPPort > /dev/null
if ! echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC -p $Le_HTTPPort > /dev/null ; then
echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | $_NC $Le_HTTPPort > /dev/null
fi
fi
if [ "$?" != "0" ] ; then
_err "nc listen error."