diff options
Diffstat (limited to 'x11vnc/misc/enhanced_tightvnc_viewer/bin/util')
| -rwxr-xr-x | x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer | 4 | ||||
| -rwxr-xr-x | x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl | 6 | 
2 files changed, 9 insertions, 1 deletions
| diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer b/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer index 5dd525c..cffe6df 100755 --- a/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer +++ b/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer @@ -354,7 +354,9 @@ disp=`echo "$orig" | awk -F: '{print $2}'`  if [ "X$host" = "X" ]; then  	host=localhost  fi -if [ $disp -lt 0 ]; then +if [ "X$disp" = "X" ]; then +	port=""	# probably -listen mode. +elif [ $disp -lt 0 ]; then  	# negative means use |n| without question:  	port=`expr 0 - $disp`  elif [ $disp -lt 200 ]; then diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl b/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl index 336a864..2f52e7e 100755 --- a/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl +++ b/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl @@ -734,6 +734,12 @@ proc help {} {  	directory you want. It can be set after starting ssvnc by putting  	HOME=/path/to/dir in the Host:Display box and clicking "Connect". +        For a Windows BAT file to get the "Home" directory correct +        something like this might be needed: + +         cd \ssvnc\Windows +         start \ssvnc\Windows\ssvnc.exe  +      11) Dynamic VNC Server Port determination and redirection:  If you          are running SSVNC on Unix and are using SSH to start the remote          VNC server and the VNC server prints out the line "PORT=NNNN" | 
