if local-address is present, bind to that ip instead of 0.0.0.0

pull/1218/head
Herve Couplet 7 years ago
parent 4a380ad7fc
commit 9134b6ea98

@ -1984,9 +1984,15 @@ _startserver() {
_NC="$_NC -6" _NC="$_NC -6"
fi fi
SOCAT_OPTIONS=TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork
#Adding bind to local-address
if [ "$_local_address" ]; then
$SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${_local_address}"
fi
_debug "_NC" "$_NC" _debug "_NC" "$_NC"
#todo listen address $_NC $SOCAT_OPTIONS SYSTEM:"sleep 0.5; echo HTTP/1.1 200 OK; echo ; echo $content; echo;" &
$_NC TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork SYSTEM:"sleep 0.5; echo HTTP/1.1 200 OK; echo ; echo $content; echo;" &
serverproc="$!" serverproc="$!"
} }

Loading…
Cancel
Save