Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
1392ead8
Commit
1392ead8
authored
Sep 11, 2007
by
runge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update ss_vncviewer script, jars, and patch files.
parent
660d66c1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
138 additions
and
47 deletions
+138
-47
SignedUltraViewerSSL.jar
classes/ssl/SignedUltraViewerSSL.jar
+0
-0
SignedVncViewer.jar
classes/ssl/SignedVncViewer.jar
+0
-0
UltraViewerSSL.jar
classes/ssl/UltraViewerSSL.jar
+0
-0
VncViewer.jar
classes/ssl/VncViewer.jar
+0
-0
ss_vncviewer
classes/ssl/ss_vncviewer
+122
-33
tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch
+8
-7
ultravnc-102-JavaViewer-ssl-etc.patch
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch
+8
-7
No files found.
classes/ssl/SignedUltraViewerSSL.jar
View file @
1392ead8
No preview for this file type
classes/ssl/SignedVncViewer.jar
View file @
1392ead8
No preview for this file type
classes/ssl/UltraViewerSSL.jar
View file @
1392ead8
No preview for this file type
classes/ssl/VncViewer.jar
View file @
1392ead8
No preview for this file type
classes/ssl/ss_vncviewer
View file @
1392ead8
...
@@ -128,7 +128,7 @@ if [ "X$STUNNEL" = "X" ]; then
...
@@ -128,7 +128,7 @@ if [ "X$STUNNEL" = "X" ]; then
fi
fi
help() {
help() {
tail +2 "$0" | sed -e '/^$/ q'
tail
-n
+2 "$0" | sed -e '/^$/ q'
}
}
gotalpha=""
gotalpha=""
...
@@ -160,7 +160,7 @@ if [ "X$1" = "X-viewerflavor" ]; then
...
@@ -160,7 +160,7 @@ if [ "X$1" = "X-viewerflavor" ]; then
echo "ultravnc"
echo "ultravnc"
exit 0
exit 0
fi
fi
str=`$VNCVIEWERCMD -h 2>&1 | head -5`
str=`$VNCVIEWERCMD -h 2>&1 | head -
n
5`
if echo "$str" | grep -i 'TightVNC.viewer' > /dev/null; then
if echo "$str" | grep -i 'TightVNC.viewer' > /dev/null; then
echo "tightvnc"
echo "tightvnc"
elif echo "$str" | grep -i 'RealVNC.Ltd' > /dev/null; then
elif echo "$str" | grep -i 'RealVNC.Ltd' > /dev/null; then
...
@@ -291,6 +291,18 @@ if [ "X$reverse" != "X" -a "X$direct_connect" = "X" ]; then
...
@@ -291,6 +291,18 @@ if [ "X$reverse" != "X" -a "X$direct_connect" = "X" ]; then
export VNCVIEWER_LISTEN_LOCALHOST
export VNCVIEWER_LISTEN_LOCALHOST
fi
fi
rsh=""
if echo "$orig" | grep '^rsh://' > /dev/null; then
use_ssh=1
rsh=1
orig=`echo "$orig" | sed -e 's,rsh://,,'`
elif echo "$orig" | grep '^rsh:' > /dev/null; then
use_ssh=1
rsh=1
orig=`echo "$orig" | sed -e 's,rsh:,,'`
fi
# play around with host:display port:
# play around with host:display port:
if echo "$orig" | grep ':' > /dev/null; then
if echo "$orig" | grep ':' > /dev/null; then
:
:
...
@@ -402,6 +414,9 @@ final() {
...
@@ -402,6 +414,9 @@ final() {
kill -KILL "$stunnel_pid" 2>/dev/null
kill -KILL "$stunnel_pid" 2>/dev/null
stunnel_pid=""
stunnel_pid=""
fi
fi
if [ "X$tail_pid" != "X" ]; then
kill -TERM $tail_pid
fi
}
}
if [ "X$reverse" = "X" ]; then
if [ "X$reverse" = "X" ]; then
...
@@ -450,6 +465,32 @@ mytmp() {
...
@@ -450,6 +465,32 @@ mytmp() {
rchk
rchk
}
}
rsh_setup() {
if echo "$ssh_host" | grep '@' > /dev/null; then
ul=`echo "$ssh_host" | awk -F@ '{print $1}'`
ul="-l $ul"
ssh_host=`echo "$ssh_host" | awk -F@ '{print $2}'`
else
ul=""
fi
ssh_cmd=`echo "$ssh_cmd" | sed -e 's/ -localhost/ /g'`
}
rsh_viewer() {
trap "final" 0 2 15
if [ "X$PORT" = "X" ]; then
exit 1
elif [ $PORT -ge 5900 ]; then
vdpy=`expr $PORT - 5900`
else
vdpy=":$PORT"
fi
stty sane
echo "$VNCVIEWERCMD" "$@" $ssh_host:$vdpy
echo ""
$VNCVIEWERCMD "$@" $ssh_host:$vdpy
}
if [ "X$use_ssh" = "X1" ]; then
if [ "X$use_ssh" = "X1" ]; then
ssh_port="22"
ssh_port="22"
ssh_host="$host"
ssh_host="$host"
...
@@ -462,8 +503,8 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -462,8 +503,8 @@ if [ "X$use_ssh" = "X1" ]; then
# user1@gw1.com:port1,user2@ws2:port2
# user1@gw1.com:port1,user2@ws2:port2
ssh_host1=`echo "$proxy1" | awk -F: '{print $1}'`
ssh_host1=`echo "$proxy1" | awk -F: '{print $1}'`
ssh_port1=`echo "$proxy1" | awk -F: '{print $2}'`
ssh_port1=`echo "$proxy1" | awk -F: '{print $2}'`
if [ "X$ssh_port1" = "X" ]; then
if [ "X$ssh_port1"
!
= "X" ]; then
ssh_port1="22"
ssh_port1="
-p
22"
fi
fi
ssh_host2=`echo "$proxy2" | awk -F: '{print $1}'`
ssh_host2=`echo "$proxy2" | awk -F: '{print $1}'`
ssh_user2=`echo "$ssh_host2" | awk -F@ '{print $1}'`
ssh_user2=`echo "$ssh_host2" | awk -F@ '{print $1}'`
...
@@ -481,8 +522,8 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -481,8 +522,8 @@ if [ "X$use_ssh" = "X1" ]; then
proxport=`findfree 3500`
proxport=`findfree 3500`
echo
echo
echo "Running 1st ssh proxy:"
echo "Running 1st ssh proxy:"
echo "$ssh -f -x
-p
$ssh_port1 $targ -e none -L $proxport:$ssh_host2:$ssh_port2 $ssh_host1 \"sleep 30\""
echo "$ssh -f -x $ssh_port1 $targ -e none -L $proxport:$ssh_host2:$ssh_port2 $ssh_host1 \"sleep 30\""
$ssh -f -x
-p
$ssh_port1 $targ -e none -L $proxport:$ssh_host2:$ssh_port2 $ssh_host1 "sleep 30"
$ssh -f -x $ssh_port1 $targ -e none -L $proxport:$ssh_host2:$ssh_port2 $ssh_host1 "sleep 30"
ssh_args="$ssh_args -o NoHostAuthenticationForLocalhost=yes"
ssh_args="$ssh_args -o NoHostAuthenticationForLocalhost=yes"
sleep 1
sleep 1
stty sane
stty sane
...
@@ -512,8 +553,13 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -512,8 +553,13 @@ if [ "X$use_ssh" = "X1" ]; then
fi
fi
getport=""
getport=""
teeport=""
if echo "$ssh_cmd" | egrep "^(PORT=|P=)" > /dev/null; then
if echo "$ssh_cmd" | egrep "^(PORT=|P=)" > /dev/null; then
getport=1
getport=1
if echo "$ssh_cmd" | egrep "^P=" > /dev/null; then
teeport=1
fi
PORT=""
PORT=""
ssh_cmd=`echo "$ssh_cmd" | sed -e 's/^PORT=[ ]*//' -e 's/^P=//'`
ssh_cmd=`echo "$ssh_cmd" | sed -e 's/^PORT=[ ]*//' -e 's/^P=//'`
SSVNC_NO_ENC_WARN=1
SSVNC_NO_ENC_WARN=1
...
@@ -531,27 +577,54 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -531,27 +577,54 @@ if [ "X$use_ssh" = "X1" ]; then
pmark=`sh -c 'echo $$'`
pmark=`sh -c 'echo $$'`
# the -t option actually speeds up typing response via VNC!!
# the -t option actually speeds up typing response via VNC!!
if [ "X$ssh_port" = "X22" ]; then
ssh_port=""
else
ssh_port="-p $ssh_port"
fi
if [ "X$SS_VNCVIEWER_SSH_ONLY" != "X" ]; then
if [ "X$SS_VNCVIEWER_SSH_ONLY" != "X" ]; then
echo "$ssh -x
-p
$ssh_port $targ $C $ssh_args $ssh_host \"$info\""
echo "$ssh -x $ssh_port $targ $C $ssh_args $ssh_host \"$info\""
echo ""
echo ""
$ssh -x
-p
$ssh_port $targ $C $ssh_args $ssh_host "$ssh_cmd"
$ssh -x $ssh_port $targ $C $ssh_args $ssh_host "$ssh_cmd"
exit $?
exit $?
elif [ "X$SS_VNCVIEWER_NO_F" != "X" ]; then
elif [ "X$SS_VNCVIEWER_NO_F" != "X" ]; then
echo "$ssh -x
-p
$ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
echo "$ssh -x $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
echo ""
echo ""
$ssh -x
-p
$ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd"
$ssh -x $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd"
rc=$?
rc=$?
elif [ "X$getport" != "X" ]; then
elif [ "X$getport" != "X" ]; then
echo "$ssh -x -f -p $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
echo ""
tport=/tmp/tport${RANDOM}.$$
tport=/tmp/tport${RANDOM}.$$
mytmp $tport
mytmp $tport
$ssh -x -f -p $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd" > $tport
rc=$?
if [ "X$rsh" != "X1" ]; then
if echo "$ssh_cmd" | grep -w sudo > /dev/null; then
echo ""
echo "Initial ssh with 'sudo id' to prime sudo so hopefully the next one"
echo "will require no password..."
echo ""
targ="-t"
$ssh -x $ssh_port $targ $ssh_args $ssh_host "sudo id; tty"
echo ""
fi
echo "$ssh -x -f $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
echo ""
$ssh -x -f $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd" > $tport
if [ "X$teeport" = "X1" ]; then
tail -f $tport 1>&2 &
tail_pid=$!
fi
rc=$?
else
rsh_setup
echo "rsh $ul $ssh_host \"$ssh_cmd\""
echo ""
rsh $ul $ssh_host "$ssh_cmd" > $tport &
sleep 1
rc=0
fi
if [ "X$SSVNC_EXTRA_SLEEP" != "X" ]; then
if [ "X$SSVNC_EXTRA_SLEEP" != "X" ]; then
sleep $SSVNC_EXTRA_SLEEP
sleep $SSVNC_EXTRA_SLEEP
...
@@ -561,11 +634,11 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -561,11 +634,11 @@ if [ "X$use_ssh" = "X1" ]; then
i=0
i=0
while [ $i -lt 10 ]; do
while [ $i -lt 10 ]; do
sleep 1
sleep 1
PORT=`grep "^PORT=" $tport | head -1 | sed -e 's/PORT=//' -e 's/\r//g'`
PORT=`grep "^PORT=" $tport | head -
n
1 | sed -e 's/PORT=//' -e 's/\r//g'`
if echo "$PORT" | grep '^[0-9][0-9]*$' > /dev/null; then
if echo "$PORT" | grep '^[0-9][0-9]*$' > /dev/null; then
break
break
fi
fi
vnss=`sed -e 's/\r//g' $tport | egrep -i '^(New.* desktop is|A VNC server is already running).*:[0-9[0-9]*$' | head -1 | awk '{print $NF}'`
vnss=`sed -e 's/\r//g' $tport | egrep -i '^(New.* desktop is|A VNC server is already running).*:[0-9[0-9]*$' | head -
n
1 | awk '{print $NF}'`
if [ "X$vnss" != "X" ]; then
if [ "X$vnss" != "X" ]; then
PORT=`echo "$vnss" | awk -F: '{print $2}'`
PORT=`echo "$vnss" | awk -F: '{print $2}'`
if echo "$PORT" | grep '^[0-9][0-9]*$' > /dev/null; then
if echo "$PORT" | grep '^[0-9][0-9]*$' > /dev/null; then
...
@@ -581,18 +654,33 @@ if [ "X$use_ssh" = "X1" ]; then
...
@@ -581,18 +654,33 @@ if [ "X$use_ssh" = "X1" ]; then
done
done
echo "PORT=$PORT" 1>&2
echo "PORT=$PORT" 1>&2
rm -f $tport
if [ "X$rsh" = "X1" ]; then
rsh_viewer "$@"
exit $?
fi
PPROXY_SOCKS=1
PPROXY_SOCKS=1
export PPROXY_SOCKS
export PPROXY_SOCKS
host="localhost"
host="localhost"
port="$PORT"
port="$PORT"
proxy="localhost:$use"
proxy="localhost:$use"
rm -f $tport
else
else
echo "$ssh -x -f -p $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
if [ "X$rsh" != "X1" ]; then
echo ""
echo "$ssh -x -f $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host \"$info\""
$ssh -x -f -p $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd"
echo ""
rc=$?
$ssh -x -f $ssh_port $targ $C $ssh_redir $ssh_args $ssh_host "$ssh_cmd"
rc=$?
else
rsh_setup
echo "rsh $ul $ssh_host \"$ssh_cmd\""
echo ""
rsh $ul $ssh_host "$ssh_cmd" &
sleep 1
PORT=$port
rsh_viewer "$@"
exit $?
fi
fi
fi
if [ "$rc" != "0" ]; then
if [ "$rc" != "0" ]; then
...
@@ -691,10 +779,11 @@ my ($first, $second) = split(/,/, $ENV{PPROXY_PROXY});
...
@@ -691,10 +779,11 @@ my ($first, $second) = split(/,/, $ENV{PPROXY_PROXY});
my ($proxy_host, $proxy_port) = split(/:/, $first);
my ($proxy_host, $proxy_port) = split(/:/, $first);
my $connect = $ENV{PPROXY_DEST};
my $connect = $ENV{PPROXY_DEST};
print STDERR "
\n
PPROXY v0.1: a tool for Web proxies and SOCKS connections.\n";
print STDERR "PPROXY v0.1: a tool for Web proxies and SOCKS connections.\n";
print STDERR "proxy_host: $proxy_host\n";
print STDERR "proxy_host: $proxy_host\n";
print STDERR "proxy_port: $proxy_port\n";
print STDERR "proxy_port: $proxy_port\n";
print STDERR "proxy_connect: $connect\n";
print STDERR "proxy_connect: $connect\n";
print STDERR "pproxy_listen: $ENV{PPROXY_LISTEN}\n";
print STDERR "\n";
print STDERR "\n";
my $listen_handle = "";
my $listen_handle = "";
...
@@ -706,12 +795,12 @@ if ($ENV{PPROXY_LISTEN} != "") {
...
@@ -706,12 +795,12 @@ if ($ENV{PPROXY_LISTEN} != "") {
Proto => "tcp"
Proto => "tcp"
);
);
if (! $listen_sock) {
if (! $listen_sock) {
die "p
erl
proxy: $!\n";
die "pproxy: $!\n";
}
}
my $ip;
my $ip;
($listen_handle, $ip) = $listen_sock->accept();
($listen_handle, $ip) = $listen_sock->accept();
if (! $listen_handle) {
if (! $listen_handle) {
die "p
erl
proxy: $!\n";
die "pproxy: $!\n";
}
}
}
}
...
@@ -723,7 +812,7 @@ my $sock = IO::Socket::INET->new(
...
@@ -723,7 +812,7 @@ my $sock = IO::Socket::INET->new(
if (! $sock) {
if (! $sock) {
unlink($0);
unlink($0);
die "p
erl
proxy: $!\n";
die "pproxy: $!\n";
}
}
my $con = "";
my $con = "";
...
@@ -773,7 +862,7 @@ if ($ENV{PPROXY_SOCKS} ne "") {
...
@@ -773,7 +862,7 @@ if ($ENV{PPROXY_SOCKS} ne "") {
$con0 = $con;
$con0 = $con;
}
}
print STDERR "proxy_request1:
\n
$con0";
print STDERR "proxy_request1:
$con0";
print $sock $con;
print $sock $con;
unlink($0);
unlink($0);
...
@@ -806,7 +895,7 @@ if ($rep !~ m,HTTP/.* 200,) {
...
@@ -806,7 +895,7 @@ if ($rep !~ m,HTTP/.* 200,) {
if ($second ne "") {
if ($second ne "") {
$con = "CONNECT $connect HTTP/1.1\r\n";
$con = "CONNECT $connect HTTP/1.1\r\n";
$con .= "Host: $connect\r\n\r\n";
$con .= "Host: $connect\r\n\r\n";
print STDERR "proxy_request2:
\n
$con";
print STDERR "proxy_request2:
$con";
print $sock $con;
print $sock $con;
...
@@ -823,14 +912,14 @@ if ($second ne "") {
...
@@ -823,14 +912,14 @@ if ($second ne "") {
}
}
if (fork) {
if (fork) {
print STDERR "p
arent\[$$] STDIN -> socket\n
\n";
print STDERR "p
proxy parent\[$$] STDIN -> socket
\n";
if ($listen_handle) {
if ($listen_handle) {
xfer($listen_handle, $sock);
xfer($listen_handle, $sock);
} else {
} else {
xfer(STDIN, $sock);
xfer(STDIN, $sock);
}
}
} else {
} else {
print STDERR "
child \[$$] socket -> STDOUT\n
\n";
print STDERR "
pproxy child \[$$] socket -> STDOUT
\n";
if ($listen_handle) {
if ($listen_handle) {
xfer($sock, $listen_handle);
xfer($sock, $listen_handle);
} else {
} else {
...
@@ -855,10 +944,10 @@ sub xfer {
...
@@ -855,10 +944,10 @@ sub xfer {
my $len = sysread($in, $buf, 8192);
my $len = sysread($in, $buf, 8192);
if (! defined($len)) {
if (! defined($len)) {
next if $! =~ /^Interrupted/;
next if $! =~ /^Interrupted/;
print STDERR "p
erl
proxy\[$$]: $!\n";
print STDERR "pproxy\[$$]: $!\n";
last;
last;
} elsif ($len == 0) {
} elsif ($len == 0) {
print STDERR "p
erl
proxy\[$$]: Input is EOF.\n";
print STDERR "pproxy\[$$]: Input is EOF.\n";
last;
last;
}
}
my $offset = 0;
my $offset = 0;
...
@@ -866,7 +955,7 @@ sub xfer {
...
@@ -866,7 +955,7 @@ sub xfer {
while ($len) {
while ($len) {
my $written = syswrite($out, $buf, $len, $offset);
my $written = syswrite($out, $buf, $len, $offset);
if (! defined $written) {
if (! defined $written) {
print STDERR "p
erl
proxy\[$$]: Output is EOF. $!\n";
print STDERR "pproxy\[$$]: Output is EOF. $!\n";
$quit = 1;
$quit = 1;
last;
last;
}
}
...
...
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch
View file @
1392ead8
...
@@ -73,8 +73,8 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/RfbProto.java vnc_javasrc/RfbProto
...
@@ -73,8 +73,8 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/RfbProto.java vnc_javasrc/RfbProto
serverMajor = (b[4] - '0') * 100 + (b[5] - '0') * 10 + (b[6] - '0');
serverMajor = (b[4] - '0') * 100 + (b[5] - '0') * 10 + (b[6] - '0');
diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSLSocketToMe.java
diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSLSocketToMe.java
--- vnc_javasrc.orig/SSLSocketToMe.java 1969-12-31 19:00:00.000000000 -0500
--- vnc_javasrc.orig/SSLSocketToMe.java 1969-12-31 19:00:00.000000000 -0500
+++ vnc_javasrc/SSLSocketToMe.java 2007-09-0
4 23:13:00
.000000000 -0400
+++ vnc_javasrc/SSLSocketToMe.java 2007-09-0
5 00:13:45
.000000000 -0400
@@ -0,0 +1,145
2
@@
@@ -0,0 +1,145
3
@@
+/*
+/*
+ * SSLSocketToMe.java: add SSL encryption to Java VNC Viewer.
+ * SSLSocketToMe.java: add SSL encryption to Java VNC Viewer.
+ *
+ *
...
@@ -587,7 +587,7 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
...
@@ -587,7 +587,7 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
+ throw new Exception("forcing CONNECT");
+ throw new Exception("forcing CONNECT");
+ }
+ }
+
+
+ int timeout =
10
;
+ int timeout =
6
;
+ if (timeout > 0) {
+ if (timeout > 0) {
+ socket = (SSLSocket) factory.createSocket();
+ socket = (SSLSocket) factory.createSocket();
+ InetSocketAddress inetaddr = new InetSocketAddress(host, port);
+ InetSocketAddress inetaddr = new InetSocketAddress(host, port);
...
@@ -1454,9 +1454,8 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
...
@@ -1454,9 +1454,8 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
+ dialog.pack();
+ dialog.pack();
+ dialog.resize(dialog.preferredSize());
+ dialog.resize(dialog.preferredSize());
+
+
+ System.out.println("calling show()");
+ dialog.show(); /* block here til Yes or No pressed. */
+ dialog.show(); /* block here til Yes or No pressed. */
+ System.out.println("done
show()");
+ System.out.println("done show()");
+ return;
+ return;
+ }
+ }
+
+
...
@@ -1464,11 +1463,13 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
...
@@ -1464,11 +1463,13 @@ diff -x VncCanvas.java -Naur vnc_javasrc.orig/SSLSocketToMe.java vnc_javasrc/SSL
+ System.out.println(evt.getActionCommand());
+ System.out.println(evt.getActionCommand());
+ if (evt.getSource() == yes) {
+ if (evt.getSource() == yes) {
+ showCertDialog = false;
+ showCertDialog = false;
+ //dialog.dispose();
+ dialog.hide();
+ } else if (evt.getSource() == no) {
+ } else if (evt.getSource() == no) {
+ showCertDialog = true;
+ showCertDialog = true;
+ //dialog.dispose();
+ dialog.hide();
+ }
+ }
+ //dialog.dispose();
+ dialog.hide();
+ System.out.println("done actionPerformed()");
+ System.out.println("done actionPerformed()");
+ }
+ }
+}
+}
...
...
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch
View file @
1392ead8
...
@@ -1815,8 +1815,8 @@ diff -Naur JavaViewer.orig/RfbProto.java JavaViewer/RfbProto.java
...
@@ -1815,8 +1815,8 @@ diff -Naur JavaViewer.orig/RfbProto.java JavaViewer/RfbProto.java
diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
--- JavaViewer.orig/SSLSocketToMe.java 1969-12-31 19:00:00.000000000 -0500
--- JavaViewer.orig/SSLSocketToMe.java 1969-12-31 19:00:00.000000000 -0500
+++ JavaViewer/SSLSocketToMe.java 2007-09-0
4 23:13:00
.000000000 -0400
+++ JavaViewer/SSLSocketToMe.java 2007-09-0
5 00:13:45
.000000000 -0400
@@ -0,0 +1,145
2
@@
@@ -0,0 +1,145
3
@@
+/*
+/*
+ * SSLSocketToMe.java: add SSL encryption to Java VNC Viewer.
+ * SSLSocketToMe.java: add SSL encryption to Java VNC Viewer.
+ *
+ *
...
@@ -2329,7 +2329,7 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
...
@@ -2329,7 +2329,7 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
+ throw new Exception("forcing CONNECT");
+ throw new Exception("forcing CONNECT");
+ }
+ }
+
+
+ int timeout =
10
;
+ int timeout =
6
;
+ if (timeout > 0) {
+ if (timeout > 0) {
+ socket = (SSLSocket) factory.createSocket();
+ socket = (SSLSocket) factory.createSocket();
+ InetSocketAddress inetaddr = new InetSocketAddress(host, port);
+ InetSocketAddress inetaddr = new InetSocketAddress(host, port);
...
@@ -3196,9 +3196,8 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
...
@@ -3196,9 +3196,8 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
+ dialog.pack();
+ dialog.pack();
+ dialog.resize(dialog.preferredSize());
+ dialog.resize(dialog.preferredSize());
+
+
+ System.out.println("calling show()");
+ dialog.show(); /* block here til Yes or No pressed. */
+ dialog.show(); /* block here til Yes or No pressed. */
+ System.out.println("done
show()");
+ System.out.println("done show()");
+ return;
+ return;
+ }
+ }
+
+
...
@@ -3206,11 +3205,13 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
...
@@ -3206,11 +3205,13 @@ diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
+ System.out.println(evt.getActionCommand());
+ System.out.println(evt.getActionCommand());
+ if (evt.getSource() == yes) {
+ if (evt.getSource() == yes) {
+ showCertDialog = false;
+ showCertDialog = false;
+ //dialog.dispose();
+ dialog.hide();
+ } else if (evt.getSource() == no) {
+ } else if (evt.getSource() == no) {
+ showCertDialog = true;
+ showCertDialog = true;
+ //dialog.dispose();
+ dialog.hide();
+ }
+ }
+ //dialog.dispose();
+ dialog.hide();
+ System.out.println("done actionPerformed()");
+ System.out.println("done actionPerformed()");
+ }
+ }
+}
+}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment