summaryrefslogtreecommitdiffstats
path: root/x11vnc/misc/enhanced_tightvnc_viewer/Windows
diff options
context:
space:
mode:
authorrunge <runge>2006-11-21 22:04:39 +0000
committerrunge <runge>2006-11-21 22:04:39 +0000
commit05ba45f72e70b4372ef05a8aca34a3bddcfaeb71 (patch)
treede6a816a91558dcf0386f420faa75cfce8ec103d /x11vnc/misc/enhanced_tightvnc_viewer/Windows
parent8dead0759febaa7176507e1bde13ebd9d2a30720 (diff)
downloadlibtdevnc-05ba45f72e70b4372ef05a8aca34a3bddcfaeb71.tar.gz
libtdevnc-05ba45f72e70b4372ef05a8aca34a3bddcfaeb71.zip
update to 1.0.8 and renaming
Diffstat (limited to 'x11vnc/misc/enhanced_tightvnc_viewer/Windows')
-rw-r--r--x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt10
-rwxr-xr-xx11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl22
2 files changed, 16 insertions, 16 deletions
diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt b/x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt
index 8710251..f77e9c0 100644
--- a/x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt
+++ b/x11vnc/misc/enhanced_tightvnc_viewer/Windows/README.txt
@@ -6,16 +6,16 @@ is launched to used this SSL tunnel.
An example server would be "x11vnc -ssl", or any VNC server with a
2nd STUNNEL program running on the server side.
-Just click on the program "ssl_tightvncviewer.exe", and then enter
-the remote VNC Server and click "Connect". Click on "Help" for more
+Just click on the program "ssvnc.exe", and then enter the remote
+VNC Server and click "Connect". Click on "Help" for more information
information. You can also set some simple options under "Options ..."
Note that on Windows when the TightVNC viewer disconnects you may need to
terminate the STUNNEL program manually. To do this: Click on the STUNNEL
icon (dark green) on the System Tray and then click "Exit". Before that,
-however, you will be prompted if you want ssl_tightvncviewer.exe to try
-to terminate STUNNEL for you. (Note that even if STUNNEL termination is
-successful, the Tray Icon may not go away until the mouse hovers over it!)
+however, you will be prompted if you want ssvnc.exe to try to terminate
+STUNNEL for you. (Note that even if STUNNEL termination is successful,
+the Tray Icon may not go away until the mouse hovers over it!)
With this STUNNEL and TightVNC Viewer wrapper you can also enable using
SSL Certificates with STUNNEL, and so the connection is not only encrypted
diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl b/x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl
index e8654a3..a023c1f 100755
--- a/x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl
+++ b/x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl
@@ -9,25 +9,25 @@ set server_fh ""
set debug 0
if {$debug} {
- if {! [info exists env(SSL_VNC_DEST)]} {
- set env(SSL_VNC_DEST) "haystack:2037"
+ if {! [info exists env(SSVNC_DEST)]} {
+ set env(SSVNC_DEST) "haystack:2037"
}
- if {! [info exists env(SSL_VNC_PROXY)]} {
- set env(SSL_VNC_PROXY) "haystack:2037"
+ if {! [info exists env(SSVNC_PROXY)]} {
+ set env(SSVNC_PROXY) "haystack:2037"
}
- if {! [info exists env(SSL_VNC_LISTEN)]} {
- set env(SSL_VNC_LISTEN) "6789"
+ if {! [info exists env(SSVNC_LISTEN)]} {
+ set env(SSVNC_LISTEN) "6789"
}
}
-set dest $env(SSL_VNC_DEST)
+set dest $env(SSVNC_DEST)
-if [regexp {,} $env(SSL_VNC_PROXY)] {
- set s [split $env(SSL_VNC_PROXY) ","]
+if [regexp {,} $env(SSVNC_PROXY)] {
+ set s [split $env(SSVNC_PROXY) ","]
set proxy1 [lindex $s 0]
set proxy2 [lindex $s 1]
} else {
- set proxy1 $env(SSL_VNC_PROXY)
+ set proxy1 $env(SSVNC_PROXY)
}
set s [split $proxy1 ":"]
@@ -40,7 +40,7 @@ if {$proxy2 != ""} {
set proxy2_port [lindex $s 1]
}
-set lport $env(SSL_VNC_LISTEN)
+set lport $env(SSVNC_LISTEN)
set got_connection 0
set lsock [socket -myaddr 127.0.0.1 -server handle_connection $lport]