ultravnc-102-JavaViewer-ssl-etc.patch 139 KB
Newer Older
1 2
diff -Naur JavaViewer.orig/ButtonPanel.java JavaViewer/ButtonPanel.java
--- JavaViewer.orig/ButtonPanel.java	2004-12-12 20:51:02.000000000 -0500
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
+++ JavaViewer/ButtonPanel.java	2007-05-31 15:40:45.000000000 -0400
@@ -43,30 +43,36 @@
     viewer = v;
 
     setLayout(new FlowLayout(FlowLayout.LEFT, 0, 0));
-    disconnectButton = new Button("Disconnect");
+	if (v.ftpOnly) {
+		disconnectButton = new Button("Quit");
+	} else {
+		disconnectButton = new Button("Close");
+	}
     disconnectButton.setEnabled(false);
     add(disconnectButton);
     disconnectButton.addActionListener(this);
-    optionsButton = new Button("Options");
-    add(optionsButton);
-    optionsButton.addActionListener(this);
-    clipboardButton = new Button("Clipboard");
-    clipboardButton.setEnabled(false);
-    add(clipboardButton);
-    clipboardButton.addActionListener(this);
-    if (viewer.rec != null) {
-      recordButton = new Button("Record");
-      add(recordButton);
-      recordButton.addActionListener(this);
-    }
-    ctrlAltDelButton = new Button("Send Ctrl-Alt-Del");
-    ctrlAltDelButton.setEnabled(false);
-    add(ctrlAltDelButton);
-    ctrlAltDelButton.addActionListener(this);
-    refreshButton = new Button("Refresh");
-    refreshButton.setEnabled(false);
-    add(refreshButton);
-    refreshButton.addActionListener(this);
+	if (!v.ftpOnly) {
+		optionsButton = new Button("Options");
+		add(optionsButton);
+		optionsButton.addActionListener(this);
+		clipboardButton = new Button("Clipboard");
+		clipboardButton.setEnabled(false);
+		add(clipboardButton);
+		clipboardButton.addActionListener(this);
+		if (viewer.rec != null) {
+			recordButton = new Button("Record");
+			add(recordButton);
+			recordButton.addActionListener(this);
+		}
+		ctrlAltDelButton = new Button("Send Ctrl-Alt-Del");
+		ctrlAltDelButton.setEnabled(false);
+		add(ctrlAltDelButton);
+		ctrlAltDelButton.addActionListener(this);
+		refreshButton = new Button("Refresh");
+		refreshButton.setEnabled(false);
+		add(refreshButton);
+		refreshButton.addActionListener(this);
+	}
     ftpButton = new Button("File Transfer");
     ftpButton.setEnabled(false);
     add(ftpButton);
@@ -79,9 +85,10 @@
 
   public void enableButtons() {
     disconnectButton.setEnabled(true);
+    ftpButton.setEnabled(true);
+    if (viewer.ftpOnly) {return;}
     clipboardButton.setEnabled(true);
     refreshButton.setEnabled(true);
-    ftpButton.setEnabled(true);
   }
 
   //
@@ -89,6 +96,9 @@
   //
 
   public void disableButtonsOnDisconnect() {
+    ftpButton.setEnabled(false);
+    if (viewer.ftpOnly) {return;}
+
     remove(disconnectButton);
     disconnectButton = new Button("Hide desktop");
     disconnectButton.setEnabled(true);
@@ -99,7 +109,6 @@
     clipboardButton.setEnabled(false);
     ctrlAltDelButton.setEnabled(false);
     refreshButton.setEnabled(false);
-    ftpButton.setEnabled(false);
 
     validate();
   }
@@ -110,6 +119,7 @@
   //
 
   public void enableRemoteAccessControls(boolean enable) {
+    if (viewer.ftpOnly) {return;}
     ctrlAltDelButton.setEnabled(enable);
   }
 
@@ -163,9 +173,19 @@
101 102 103
     }
     else if (evt.getSource() == ftpButton)
     {
104
-		viewer.ftp.setVisible(!viewer.ftp.isVisible());
105
+// begin runge/x11vnc
106 107 108
+		if (viewer.ftpOnly) {
+			viewer.vncFrame.setVisible(false);
+		}
109
+		viewer.ftp.setSavedLocations();
110 111 112 113 114
+		if (viewer.ftp.isVisible()) {
+			viewer.ftp.doClose();
+		} else {
+			viewer.ftp.doOpen();
+		}
115 116 117 118 119 120 121 122 123
+// end runge/x11vnc
 		viewer.rfb.readServerDriveList();
-	
+
     }
   }
 }
diff -Naur JavaViewer.orig/FTPFrame.java JavaViewer/FTPFrame.java
--- JavaViewer.orig/FTPFrame.java	2005-03-15 23:53:14.000000000 -0500
124
+++ JavaViewer/FTPFrame.java	2009-01-13 09:48:30.000000000 -0500
125
@@ -24,8 +24,17 @@
126 127
 import java.io.*;
 import java.util.ArrayList;
128
 import java.util.Vector;
129
+import java.util.Date;
130 131
 import javax.swing.*;
 
132 133 134 135
+import java.nio.ByteBuffer;
+import java.nio.CharBuffer;
+import java.nio.charset.*;
+
136 137 138 139 140 141 142
+// begin runge/x11vnc
+import java.util.Arrays;
+// end runge/x11vnc
+
 
 /*
  * Created on Feb 25, 2004
143
@@ -74,12 +83,31 @@
144 145 146 147 148 149 150 151
 	public javax.swing.JTextField connectionStatus = null;
 	public boolean updateDriveList;
 	private Vector remoteList = null;
+	private Vector remoteListInfo = null;
 	private Vector localList = null;
+	private Vector localListInfo = null;
 	private File currentLocalDirectory = null;	// Holds the current local Directory
 	private File currentRemoteDirectory = null;	// Holds the current remote Directory
152 153 154 155 156 157
 	private File localSelection = null;		// Holds the currently selected local file  
 	private String remoteSelection = null;	// Holds the currently selected remote file
 	public String selectedTable = null;
+
+// begin runge/x11vnc
+	private javax.swing.JButton viewButton = null;
158
+	private javax.swing.JButton refreshButton = null;
159 160 161 162 163 164 165
+	public File saveLocalDirectory = null;
+	public long saveLocalDirectoryTime = 0;
+	public int saveLocalDirectoryCount = 0;
+	public String saveRemoteDirectory = null;
+	public long saveRemoteDirectoryTime = 0;
+	public int saveRemoteDirectoryCount = 0;
+	private boolean localCurrentIsDir = true;
166 167
+	private int lastRemoteIndex = -1;
+	private int lastLocalIndex = -1;
168 169 170
+	private boolean doingShortcutDir = false;
+	private boolean gotShortcutDir = false;
+	private boolean ignore_events = false;
171 172 173 174
+// end   runge/x11vnc
 	
 //	 sf@2004 - Separate directories and files for better lisibility
 	private ArrayList DirsList;
175
@@ -125,11 +153,61 @@
176 177 178 179
 	 
 	 void refreshRemoteLocation()
 	 {
+
180
+//System.out.println("refreshRemoteLocation1");
181
 		remoteList.clear();
182
+		remoteListInfo.clear();
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
 		remoteFileTable.setListData(remoteList);	
+System.out.println("refreshRemoteLocation '" + remoteLocation.getText() + "'");	// runge/x11vnc
 		viewer.rfb.readServerDirectory(remoteLocation.getText());
 	 }
 	 
+// begin runge/x11vnc
+	 public void setSavedLocations() {
+		saveLocalDirectory = currentLocalDirectory;
+		saveLocalDirectoryTime = System.currentTimeMillis();
+		saveLocalDirectoryCount = 0;
+
+		if (remoteLocation != null) {
+			saveRemoteDirectory = remoteLocation.getText();
+System.out.println("RemoteSave '" + saveRemoteDirectory + "'");
+		}
+		saveRemoteDirectoryTime = System.currentTimeMillis();
+		saveRemoteDirectoryCount = 0;
+	 }
+
+	private File saveLocalHack(File dir) {
+		saveLocalDirectoryCount++;
204
+//System.out.println("L " + saveLocalDirectoryCount + " dt: " + (System.currentTimeMillis() - saveLocalDirectoryTime) + " - " + saveLocalDirectory);
205 206 207 208 209 210 211 212 213 214 215 216 217 218
+		if (System.currentTimeMillis() > saveLocalDirectoryTime + 2000 || saveLocalDirectoryCount > 2) {
+			saveLocalDirectory = null;
+		}
+		if (saveLocalDirectory != null) {
+			currentLocalDirectory = saveLocalDirectory;
+			localLocation.setText(saveLocalDirectory.toString());
+			return saveLocalDirectory;
+		} else {
+			return dir;
+		}
+	}
+
+	private String saveRemoteHack(String indrive) {
+		saveRemoteDirectoryCount++;
219
+//System.out.println("R " + saveRemoteDirectoryCount + " - " + saveRemoteDirectory);
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
+		if (saveRemoteDirectory != null && saveRemoteDirectoryCount > 1) {
+			saveRemoteDirectory = null;
+		}
+		if (saveRemoteDirectory != null) {
+			if (! saveRemoteDirectory.equals("")) {
+System.out.println("saveRemoteHack setText + refreshRemoteLocation '" + saveRemoteDirectory + "'");
+				return saveRemoteDirectory;
+			}
+		}
+		return indrive;
+	}
+// end runge/x11vnc
+
+
 	/*
 	 * Prints the list of drives on the remote directory and returns a String[].  
 	 * str takes as string like A:fC:lD:lE:lF:lG:cH:c
237
@@ -143,6 +221,9 @@
238 239 240 241 242 243 244 245 246
 		int size = str.length();
 		String driveType = null;
 		String[] drive = new String[str.length() / 3];
+		int idx = 0, C_drive = -1, O_drive = -1;
+
+System.out.println("ComboBox: Str   '" + str + "'");
 
 		// Loop through the string to create a String[]
 		for (int i = 0; i < size; i = i + 3) {
247
@@ -150,26 +231,68 @@
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
 			driveType = str.substring(i + 2, i + 3);
 			if (driveType.compareTo("f") == 0)
 				drive[i / 3] += "\\ Floppy";
-			if (driveType.compareTo("l") == 0)
+			if (driveType.compareTo("l") == 0) {
 				drive[i / 3] += "\\ Local Disk";
+				if (drive[i/3].substring(0,1).toUpperCase().equals("C")) {
+					C_drive = idx;
+				} else if (O_drive < 0) {
+					O_drive = idx;
+				}
+			}
 			if (driveType.compareTo("c") == 0)
 				drive[i / 3] += "\\ CD-ROM";
 			if (driveType.compareTo("n") == 0)
 				drive[i / 3] += "\\ Network";
 
 			remoteDrivesComboBox.addItem(drive[i / 3]);
+System.out.println("ComboBox: Add " + idx + " '" + drive[i/3] + "'");
+			idx++;
268
+		}
269 270
+
+		// runge
271 272 273 274
+		if (viewer.ftpDropDown != null) {
+			String[] dd = viewer.ftpDropDown.split("\\.");
+			for (int i=0; i < dd.length; i++) {
+				if (!dd[i].equals("")) {
275 276 277 278 279 280 281
+					String s = dd[i];
+					if (s.startsWith("TOP_")) {
+						s = s.substring(4);
+						remoteDrivesComboBox.insertItemAt(" [" + s + "]", 0);
+					} else {
+						remoteDrivesComboBox.addItem(" [" + s + "]");
+					}
282 283 284 285 286 287 288
+				}
+			}
+		} else {
+			remoteDrivesComboBox.addItem(" [My Documents]");
+			remoteDrivesComboBox.addItem(" [Desktop]");
+			remoteDrivesComboBox.addItem(" [Home]");
 		}
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
+
 		//sf@ - Select Drive C:as default if possible
 		boolean bFound = false;
-		for(int i = 0; i < remoteDrivesComboBox.getItemCount() ; i++)
-		{
-			if(remoteDrivesComboBox.getItemAt(i).toString().substring(0,1).toUpperCase().equals("C"))
-			{
-				remoteDrivesComboBox.setSelectedIndex(i);
+
+		if (false) {
+			for(int i = 0; i < remoteDrivesComboBox.getItemCount() ; i++) {
+				if(remoteDrivesComboBox.getItemAt(i).toString().substring(0,1).toUpperCase().equals("C")) {
+					remoteDrivesComboBox.setSelectedIndex(i);
+					bFound = true;
+				}
+			}
+		} else {
306
+			if (C_drive >= 0) {
307
+				remoteDrivesComboBox.setSelectedIndex(C_drive);
308
+				bFound = true;
309
+System.out.println("ComboBox: C_drive index: " + C_drive);
310
+			} else if (O_drive >= 0) {
311
+				remoteDrivesComboBox.setSelectedIndex(O_drive);
312
 				bFound = true;
313 314 315 316 317 318 319 320 321
+System.out.println("ComboBox: Other_drive index: " + O_drive);
 			}
 		}
+
 		if (!bFound) remoteDrivesComboBox.setSelectedIndex(0);
+
 		updateDriveList = false;
 		return drive;
 	}
322
@@ -185,6 +308,8 @@
323 324 325 326
 		stopButton.setVisible(true);
 		stopButton.setEnabled(true);
 		receiveButton.setEnabled(false);
+		viewButton.setEnabled(false);	// runge/x11vnc
327
+		refreshButton.setEnabled(false);
328 329 330
 		remoteTopButton.setEnabled(false);
 		sendButton.setEnabled(false);
 		remoteFileTable.setEnabled(false);
331
@@ -207,6 +332,8 @@
332 333 334 335
 		stopButton.setVisible(false);
 		stopButton.setEnabled(false);
 		receiveButton.setEnabled(true);
+		viewButton.setEnabled(true);	// runge/x11vnc
336
+		refreshButton.setEnabled(true);
337 338 339
 		remoteTopButton.setEnabled(true);
 		sendButton.setEnabled(true);
 		remoteFileTable.setEnabled(true);
340
@@ -221,10 +348,11 @@
341 342 343 344 345 346 347 348 349 350 351 352
 	/*
 	 * Print Directory prints out all the contents of a directory
 	 */
-	void printDirectory(ArrayList a) {
+	void printDirectory(ArrayList a, ArrayList b) {
 
 		for (int i = 0; i < a.size(); i++) {
 			remoteList.addElement(a.get(i));
+			remoteListInfo.addElement(b.get(i));
 		}
 		remoteFileTable.setListData(remoteList);
 	}
353
@@ -235,10 +363,12 @@
354 355 356 357 358 359 360 361 362 363 364 365 366
 	 * @return void
 	 */
 	private void initialize() {
+		ignore_events = true;
 		this.setSize(794, 500);
 		this.setContentPane(getJContentPane());
+		ignore_events = false;
 		updateDriveList = true;
-		}
+	}
 	/**
 	 * This method initializes jContentPane.  This is the main content pane
 	 * 
367
@@ -253,6 +383,33 @@
368 369 370
 			jContentPane.add(getRemotePanel(), java.awt.BorderLayout.EAST);
 			jContentPane.add(getLocalPanel(), java.awt.BorderLayout.WEST);
 			jContentPane.add(getButtonPanel(), java.awt.BorderLayout.CENTER);
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
+
+			KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
+			AbstractAction escapeAction = new AbstractAction() {
+				public void actionPerformed(ActionEvent actionEvent) {
+					System.out.println("Escape Pressed");
+					if (viewer.ftpOnly) {
+						System.out.println("exiting...");
+						System.exit(0);
+					} else {
+						doClose();
+					}
+				}
+			};
+			jContentPane.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(stroke, "escapeAction");
+			jContentPane.getInputMap().put(stroke, "escapeAction");
+			jContentPane.getActionMap().put("escapeAction", escapeAction);
+
+			stroke = KeyStroke.getKeyStroke(KeyEvent.VK_R, InputEvent.CTRL_MASK);
+			AbstractAction resetAction = new AbstractAction() {
+				public void actionPerformed(ActionEvent actionEvent) {
+					System.out.println("Ctrl-R Pressed");
+					doReset();
+				}
+			};
+			jContentPane.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(stroke, "resetAction");
+			jContentPane.getInputMap().put(stroke, "resetAction");
+			jContentPane.getActionMap().put("resetAction", resetAction);
398 399 400
 		}
 		return jContentPane;
 	}
401
@@ -270,6 +427,7 @@
402 403 404
 			topPanelLocal.add(getLocalMachineLabel(), java.awt.BorderLayout.CENTER);
 			topPanelLocal.add(getLocalTopButton(), java.awt.BorderLayout.EAST);
 			topPanelLocal.setBackground(java.awt.Color.lightGray);
405
+//System.out.println("getTopPanelLocal");
406 407 408
 		}
 		return topPanelLocal;
 	}
409
@@ -288,6 +446,7 @@
410 411 412
 			topPanelRemote.add(getRemoteMachineLabel(), java.awt.BorderLayout.CENTER);
 			topPanelRemote.add(getRemoteTopButton(), java.awt.BorderLayout.EAST);
 			topPanelRemote.setBackground(java.awt.Color.lightGray);
413
+//System.out.println("getTopPanelRemote");
414 415 416
 		}
 		return topPanelRemote;
 	}
417
@@ -301,6 +460,7 @@
418 419 420
 		if (topPanelCenter == null) {
 			topPanelCenter = new javax.swing.JPanel();
 			topPanelCenter.add(getDummyButton(), null);
421
+//System.out.println("getTopPanelCenter");
422 423 424
 		}
 		return topPanelCenter;
 	}
425
@@ -328,6 +488,7 @@
426 427 428
 			topPanel.add(getRemoteTopButton(), null);
 			topPanel.setBackground(java.awt.Color.lightGray);
 			*/
429
+//System.out.println("getTopPanel");
430 431 432
 		}
 		return topPanel;
 	}
433
@@ -348,6 +509,7 @@
434 435 436
 			statusPanel.add(getJProgressBar(), null);
 			statusPanel.add(getConnectionStatus(), null);
 			statusPanel.setBackground(java.awt.Color.lightGray);
437
+//System.out.println("getStatusPanel");
438 439 440
 			
 		}
 		return statusPanel;
441
@@ -368,6 +530,7 @@
442 443 444
 			remotePanel.add(getRemoteScrollPane(), null);
 			remotePanel.add(getRemoteStatus(), null);
 			remotePanel.setBackground(java.awt.Color.lightGray);
445
+//System.out.println("getRemotePanel");
446 447 448
 		}
 		return remotePanel;
 	}
449
@@ -390,6 +553,7 @@
450 451 452
 			localPanel.setComponentOrientation(
 				java.awt.ComponentOrientation.UNKNOWN);
 			localPanel.setName("localPanel");
453
+//System.out.println("getLocalPanel");
454 455 456
 		}
 		return localPanel;
 	}
457
@@ -405,12 +569,15 @@
458 459 460
 			buttonPanel = new javax.swing.JPanel();
 			buttonPanel.setLayout(null);
 			buttonPanel.add(getReceiveButton(), null);
461
+			buttonPanel.add(getRefreshButton(), null);	// runge/x11vnc
462 463 464 465
+			buttonPanel.add(getViewButton(), null);	// runge/x11vnc
 			buttonPanel.add(getNewFolderButton(), null);
 			buttonPanel.add(getCloseButton(), null);
 			buttonPanel.add(getDeleteButton(), null);
466 467 468
 			buttonPanel.add(getSendButton(), null);
 			buttonPanel.add(getStopButton(), null);
 			buttonPanel.setBackground(java.awt.Color.lightGray);
469
+//System.out.println("getButtonPanel");
470 471 472
 		}
 		return buttonPanel;
 	}
473
@@ -422,10 +589,11 @@
474 475 476 477 478 479 480 481
 	private javax.swing.JButton getSendButton() {
 		if (sendButton == null) {
 			sendButton = new javax.swing.JButton();
-			sendButton.setBounds(20, 30, 97, 25);
+			sendButton.setBounds(15, 30, 107, 25);	// runge/x11vnc
 			sendButton.setText("Send >>");
 			sendButton.setName("sendButton");
 			sendButton.addActionListener(this);
482
+//System.out.println("getSendButton");
483 484 485
 
 		}
 		return sendButton;
486
@@ -438,7 +606,7 @@
487 488 489 490 491 492 493 494
 	private javax.swing.JButton getReceiveButton() {
 		if (receiveButton == null) {
 			receiveButton = new javax.swing.JButton();
-			receiveButton.setBounds(20, 60, 97, 25);
+			receiveButton.setBounds(15, 60, 107, 25);	// runge/x11vnc
 			receiveButton.setText("<< Receive");
 			receiveButton.setName("receiveButton");
 			receiveButton.addActionListener(this);
495
@@ -453,7 +621,7 @@
496 497 498 499 500 501 502 503
 	private javax.swing.JButton getDeleteButton() {
 		if (deleteButton == null) {
 			deleteButton = new javax.swing.JButton();
-			deleteButton.setBounds(20, 110, 97, 25);
+			deleteButton.setBounds(15, 110, 107, 25);	// runge/x11vnc
 			deleteButton.setText("Delete File");
 			deleteButton.setName("deleteButton");
 			deleteButton.addActionListener(this);
504
@@ -468,7 +636,7 @@
505 506 507 508 509 510 511 512
 	private javax.swing.JButton getNewFolderButton() {
 		if (newFolderButton == null) {
 			newFolderButton = new javax.swing.JButton();
-			newFolderButton.setBounds(20, 140, 97, 25);
+			newFolderButton.setBounds(15, 140, 107, 25);	// runge/x11vnc
 			newFolderButton.setText("New Folder");
 			newFolderButton.setName("newFolderButton");
 			newFolderButton.addActionListener(this);
513
@@ -476,6 +644,39 @@
514 515 516 517 518
 		return newFolderButton;
 	}
 	
+// begin runge/x11vnc
+	/**
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
+	 * This method initializes refreshButton
+	 * 
+	 * @return javax.swing.JButton
+	 */
+	private javax.swing.JButton getRefreshButton() {
+		if (refreshButton == null) {
+			refreshButton = new javax.swing.JButton();
+			refreshButton.setBounds(15, 170, 107, 25);
+			refreshButton.setText("Refresh");
+			refreshButton.setName("refreshButton");
+			refreshButton.addActionListener(this);
+		}
+		return refreshButton;
+	}
+	/**
534 535 536 537 538 539 540
+	 * This method initializes viewButton
+	 * 
+	 * @return javax.swing.JButton
+	 */
+	private javax.swing.JButton getViewButton() {
+		if (viewButton == null) {
+			viewButton = new javax.swing.JButton();
541
+			viewButton.setBounds(15, 200, 107, 25);
542 543 544 545 546 547 548 549 550 551 552
+			viewButton.setText("View File");
+			viewButton.setName("viewButton");
+			viewButton.addActionListener(this);
+		}
+		return viewButton;
+	}
+// end   runge/x11vnc
+
 	/**
 	 * This method initializes stopButton
 	 * 
553
@@ -486,7 +687,7 @@
554 555 556 557
 		if (stopButton == null)
 		{
 			stopButton = new javax.swing.JButton();
-			stopButton.setBounds(20, 200, 97, 25);
558
+			stopButton.setBounds(15, 230, 107, 25);	// runge/x11vnc
559 560 561
 			stopButton.setText("Stop");
 			stopButton.setName("stopButton");
 			stopButton.addActionListener(this);
562
@@ -503,8 +704,12 @@
563 564 565 566
 	private javax.swing.JButton getCloseButton() {
 		if (closeButton == null) {
 			closeButton = new javax.swing.JButton();
-			closeButton.setBounds(20, 325, 97, 25);
567
-			closeButton.setText("Close");
568
+			closeButton.setBounds(15, 325, 107, 25);	// runge/x11vnc
569 570 571 572 573
+			if (viewer.ftpOnly) {
+				closeButton.setText("Quit");
+			} else {
+				closeButton.setText("Close");
+			}
574 575
 			closeButton.setName("closeButton");
 			closeButton.addActionListener(this);
576
 		}
577
@@ -551,6 +756,7 @@
578 579 580
 			//Select the second entry (e.g. C:\)
 			// localDrivesComboBox.setSelectedIndex(1);
 			localDrivesComboBox.addActionListener(this);
581
+//System.out.println("getLocalDrivesComboBox");
582 583 584
 		}
 		updateDriveList = false;
 		return localDrivesComboBox;
585
@@ -567,6 +773,7 @@
586 587 588
 			remoteDrivesComboBox.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
 			remoteDrivesComboBox.addActionListener(this);
589
+//System.out.println("getRemoteDrivesComboBox");
590 591 592
 
 		}
 		return remoteDrivesComboBox;
593
@@ -587,6 +794,7 @@
594 595 596
 			localMachineLabel.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.BOLD, 11));
 			localMachineLabel.setEditable(false);
597
+//System.out.println("getLocalMachineLabel");
598 599 600
 		}
 		return localMachineLabel;
 	}
601
@@ -622,6 +830,7 @@
602 603 604
 			localTopButton.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.BOLD, 10));
 			localTopButton.addActionListener(this);
605
+//System.out.println("getLocalTopButton");
606 607 608
 		}
 		return localTopButton;
 	}
609
@@ -638,6 +847,7 @@
610 611 612
 			remoteTopButton.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.BOLD, 10));
 			remoteTopButton.addActionListener(this);
613
+//System.out.println("getRemoteTopButton");
614 615 616
 		}
 		return remoteTopButton;
 	}
617
@@ -650,9 +860,24 @@
618 619 620 621
 	private javax.swing.JList getLocalFileTable() {
 		if (localFileTable == null) {
 			localList = new Vector(0);
+			localListInfo = new Vector(0);
622
 			localFileTable = new JList(localList);
623 624 625 626 627 628 629 630 631 632 633 634
+			MouseMotionListener mlisten = new MouseMotionAdapter() {
+				public void mouseMoved(MouseEvent e) {
+					int index = localFileTable.locationToIndex(e.getPoint());
+					if (index == lastLocalIndex) {
+						return;
+					} else if (index < 0) {
+						return;
+					}
+					lastLocalIndex = index;
+					connectionStatus.setText((String) localListInfo.get(index));
+				}
+			};
635
 			localFileTable.addMouseListener(this);
636
+			localFileTable.addMouseMotionListener(mlisten);
637
 			localFileTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
638
+//System.out.println("getLocalFileTable");
639 640 641
 		}
 		return localFileTable;
 	}
642
@@ -669,6 +894,7 @@
643 644 645
 			localScrollPane.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
 			localScrollPane.setName("localFileList");
646
+//System.out.println("getLocalScrollPane");
647 648 649
 		}
 		return localScrollPane;
 	}
650
@@ -680,10 +906,25 @@
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
 	private javax.swing.JList getRemoteFileTable() {
 		if (remoteFileTable == null) {
 			remoteList = new Vector(0);
+			remoteListInfo = new Vector(0);
 			remoteFileTable = new JList(remoteList);
+			MouseMotionListener mlisten = new MouseMotionAdapter() {
+				public void mouseMoved(MouseEvent e) {
+					int index = remoteFileTable.locationToIndex(e.getPoint());
+					if (index == lastRemoteIndex) {
+						return;
+					} else if (index < 0) {
+						return;
+					}
+					lastRemoteIndex = index;
+					connectionStatus.setText((String) remoteListInfo.get(index));
+				}
+			};
668
 			remoteFileTable.addMouseListener(this);
669
+			remoteFileTable.addMouseMotionListener(mlisten);
670 671
 			remoteFileTable.setSelectedValue("C:\\", false);
 			remoteFileTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
672
+//System.out.println("getRemoteFileTable");
673 674 675
 			
 		}
 		return remoteFileTable;
676
@@ -698,6 +939,7 @@
677 678 679
 			remoteScrollPane = new javax.swing.JScrollPane();
 			remoteScrollPane.setViewportView(getRemoteFileTable());
 			remoteScrollPane.setPreferredSize(new java.awt.Dimension(325, 418));
680
+//System.out.println("getRemoteScrollPane");
681 682 683
 		}
 		return remoteScrollPane;
 	}
684
@@ -716,6 +958,7 @@
685 686 687
 			remoteLocation.setBackground(new Color(255,255,238));
 			remoteLocation.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
688
+//System.out.println("getRemoteLocation");
689 690 691
 		}
 		return remoteLocation;
 	}
692
@@ -732,6 +975,7 @@
693 694 695
 			localLocation.setBackground( new Color(255,255,238));
 			localLocation.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
696
+//System.out.println("getLocalLocation");
697 698 699
 		}
 		return localLocation;
 	}
700
@@ -748,6 +992,7 @@
701 702 703
 			localStatus.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
 			localStatus.setEditable(false);
704
+//System.out.println("getLocalStatus");
705 706 707
 		}
 		return localStatus;
 	}
708
@@ -764,6 +1009,7 @@
709 710 711
 			remoteStatus.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
 			remoteStatus.setEditable(false);
712
+//System.out.println("getRemoteStatus");
713 714 715
 		}
 		return remoteStatus;
 	}
716
@@ -777,9 +1023,10 @@
717 718 719 720 721
 			historyComboBox = new javax.swing.JComboBox();
 			historyComboBox.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.BOLD, 10));
-			historyComboBox.insertItemAt(new String("Pulldown to view history ..."),0);
+			historyComboBox.insertItemAt(new String("Pulldown to view history;   Press Escape to Close/Quit;   Press Ctrl-R to Reset Panel."),0);
722 723
 			historyComboBox.setSelectedIndex(0);
 			historyComboBox.addActionListener(this);
724
+//System.out.println("getHistoryComboBox");
725 726 727
 		}
 		return historyComboBox;
 	}
728
@@ -791,6 +1038,7 @@
729 730 731
 	private javax.swing.JProgressBar getJProgressBar() {
 		if (jProgressBar == null) {
 			jProgressBar = new javax.swing.JProgressBar();
732
+//System.out.println("getJProgressBar");
733 734 735
 		}
 		return jProgressBar;
 	}
736
@@ -806,6 +1054,7 @@
737 738 739
 			connectionStatus.setBackground(java.awt.Color.lightGray);
 			connectionStatus.setFont(
 				new java.awt.Font("Dialog", java.awt.Font.PLAIN, 10));
740
+//System.out.println("getConnectionStatus");
741 742 743
 		}
 			connectionStatus.setEditable(false);
 		return connectionStatus;
744
@@ -815,7 +1064,12 @@
745 746 747 748 749
 	 * Implements Action listener.
 	 */
 	public void actionPerformed(ActionEvent evt) {
-		System.out.println(evt.getSource());
+//		System.out.println(evt.getSource());
750 751 752 753 754
+
+		if (ignore_events) {
+			System.out.println("ignore_events: " + evt.getSource());
+			return;
+		}
755 756 757
 
 		if (evt.getSource() == closeButton)
 		{ // Close Button
758
@@ -829,15 +1083,27 @@
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
 		{
 			doReceive();
 		}
+// begin runge/x11vnc
+		else if (evt.getSource() == viewButton)
+		{
+			doView();
+		}
+// end   runge/x11vnc
 		else if (evt.getSource() == localDrivesComboBox)
 		{
 			changeLocalDrive();
 		}
 		else if (evt.getSource() == remoteDrivesComboBox)
 		{ 
774
+//System.out.println("remoteDrivesComboBox");	// runge/x11vnc
775
 			changeRemoteDrive();
776 777 778 779 780 781 782 783 784
-			remoteList.clear();
-			remoteFileTable.setListData(remoteList);
+
+			// are these really needed? changeRemoteDrive() does them at the end.
+			if (false) {
+				remoteList.clear();
+				remoteListInfo.clear();
+				remoteFileTable.setListData(remoteList);
+			}
785 786
 		}
 		else if (evt.getSource() == localTopButton)
787
 		{
788
@@ -845,12 +1111,17 @@
789 790 791
 		}
 		else if (evt.getSource() == remoteTopButton)
 		{
792
+//System.out.println("remoteTopButton");	// runge/x11vnc
793 794 795
 		  	changeRemoteDrive();
 		}
 		else if(evt.getSource() == deleteButton)
796 797 798 799 800 801 802 803 804 805
 		{
 			doDelete();
 		}
+		else if(evt.getSource() == refreshButton)
+		{
+			doRefresh();
+		}
 		else if(evt.getSource()==newFolderButton)
 		{
 			doNewFolder();
806
@@ -864,7 +1135,7 @@
807 808 809 810 811 812 813 814
 
 	private void doNewFolder()
 	{
-		String name = JOptionPane.showInputDialog(null,"Enter new directory name", "Create New Directory", JOptionPane.QUESTION_MESSAGE);
+		String name = JOptionPane.showInputDialog(jContentPane,"Enter new directory name", "Create New Directory", JOptionPane.QUESTION_MESSAGE);
 		if(selectedTable.equals("remote"))
 		{
 			name = remoteLocation.getText()+name;
815
@@ -880,34 +1151,106 @@
816 817 818 819 820 821
 			historyComboBox.setSelectedIndex(0);
 		}
 	}
-	private void doClose()
+	public void doClose()
 	{
822 823 824 825
+		if (viewer.ftpOnly) {
+			viewer.disconnect();
+			return;
+		}
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
 		try {
 			this.setVisible(false);
-			viewer.rfb.writeFramebufferUpdateRequest(
-									0,
-									0,
-									viewer.rfb.framebufferWidth,
-									viewer.rfb.framebufferHeight,
-									true);
+			viewer.rfb.writeFramebufferUpdateRequest(0, 0, viewer.rfb.framebufferWidth,
+			    viewer.rfb.framebufferHeight, true);
+
+			if (false) {
+				this.dispose();
+				jContentPane = null;
+			}
 		} catch (IOException e) {
 			// TODO Auto-generated catch block
 			e.printStackTrace();
 		}
 	}
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
+	private void unSwing() {
+		jContentPane = null;
+		topPanel = null;
+		topPanelLocal = null;
+		topPanelRemote = null;
+		topPanelCenter = null;
+		statusPanel = null;
+		remotePanel = null;
+		localPanel = null;
+		buttonPanel = null;
+		sendButton = null;
+		receiveButton = null;
+		deleteButton = null;
+		newFolderButton = null;
+		stopButton = null;
+		closeButton = null;
+		dummyButton = null;
+		localDrivesComboBox = null;
+		remoteDrivesComboBox = null;
+		localMachineLabel = null;
+		remoteMachineLabel = null;
+		localTopButton = null;
+		remoteTopButton = null;
+		localScrollPane = null;
+		localFileTable = null;
+		remoteScrollPane = null;
+		remoteFileTable = null;
+		remoteLocation = null;
+		localLocation = null;
+		localStatus = null;
+		remoteStatus = null;
+		historyComboBox = null;
+		jProgressBar = null;
+		connectionStatus = null;
+		viewButton = null;
+		refreshButton = null;
+	}
+
+	public void doReset()
+	{
+		try {
+			this.setVisible(false);
+			this.dispose();
+			jContentPane = null;
+		        try {Thread.sleep(500);} catch (InterruptedException e) {}
+			viewer.ftp_init();
+		} catch (Exception e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+	}
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
 
+	public void doOpen()
+	{
+		try {
+			this.setVisible(true);
+			if (false) {
+				this.initialize();
+			}
+		} catch (Exception e) {
+			// TODO Auto-generated catch block
+			e.printStackTrace();
+		}
+	}
 	private void doDelete()
 	{
912 913 914 915 916
-		System.out.println("Delete Button Pressed");
+//		System.out.println("Delete Button Pressed");
 		//Call this method to delete a file at server
 		if(selectedTable.equals("remote"))
 		{	
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
-			String sFileName = ((String) this.remoteFileTable.getSelectedValue());
+			Object selected = this.remoteFileTable.getSelectedValue();
+			if (selected == null) {
+				return;
+			}
+			String sFileName = ((String) selected);
 			
 //			 sf@2004 - Directory can't be deleted
 			if (sFileName.substring(0, 2).equals(" [") && sFileName.substring((sFileName.length() - 1), sFileName.length()).equals("]"))
 			{
-				JOptionPane.showMessageDialog(null, (String)"Directory Deletion is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
+				JOptionPane.showMessageDialog(jContentPane, (String)"Directory Deletion is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
 				return;
 			}			
 			
932
@@ -916,7 +1259,7 @@
933 934 935 936 937 938 939 940
 			// sf@2004 - Delete prompt
 			if (remoteList.contains(sFileName))
 			{
-				int r = JOptionPane.showConfirmDialog(null, "Are you sure you want to delete the file \n< " + sFileName + " >\n on Remote Machine ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
+				int r = JOptionPane.showConfirmDialog(jContentPane, "Are you sure you want to delete the file \n< " + sFileName + " >\n on Remote Machine ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
 				if (r == JOptionPane.NO_OPTION)
 					return;
 			}
941
@@ -926,18 +1269,22 @@
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
 		}
 		else
 		{
-			String sFileName = ((String) this.localFileTable.getSelectedValue());
+			Object selected = this.localFileTable.getSelectedValue();
+			if (selected == null) {
+				return;
+			}
+			String sFileName = ((String) selected);
 			
 //			 sf@2004 - Directory can't be deleted
 			if (sFileName.substring(0, 2).equals(" [") && sFileName.substring((sFileName.length() - 1), sFileName.length()).equals("]"))
 			{
-				JOptionPane.showMessageDialog(null, (String)"Directory Deletion is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
+				JOptionPane.showMessageDialog(jContentPane, (String)"Directory Deletion is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
 				return;
 			}			
 			// sf@2004 - Delete prompt
 			if (localList.contains(sFileName))
 			{
-				int r = JOptionPane.showConfirmDialog(null, "Are you sure you want to delete the file \n< " + sFileName + " >\n on Local Machine ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
+				int r = JOptionPane.showConfirmDialog(jContentPane, "Are you sure you want to delete the file \n< " + sFileName + " >\n on Local Machine ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
 				if (r == JOptionPane.NO_OPTION)
 					return;
 			}			
967
@@ -952,21 +1299,25 @@
968 969 970 971 972 973
 
 	private void doReceive()
 	{
-		System.out.println("Received Button Pressed");
+//		System.out.println("Received Button Pressed");
 
974 975 976 977 978 979 980 981 982 983 984 985 986 987
-		String sFileName = ((String) this.remoteFileTable.getSelectedValue());
+		Object selected = this.remoteFileTable.getSelectedValue();
+		if (selected == null) {
+			return;
+		}
+		String sFileName = ((String) selected);
 		
 		// sf@2004 - Directory can't be transfered
 		if (sFileName.substring(0, 2).equals(" [") && sFileName.substring((sFileName.length() - 1), sFileName.length()).equals("]"))
 		{
-			JOptionPane.showMessageDialog(null, (String)"Directory Transfer is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
+			JOptionPane.showMessageDialog(jContentPane, (String)"Directory Transfer is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
 			return;
 		}
988
 		
989 990 991 992 993 994 995 996
 		// sf@2004 - Overwrite prompt
 		if (localList.contains(sFileName))
 		{
-			int r = JOptionPane.showConfirmDialog(null, "The file < " + sFileName + " >\n already exists on Local Machine\n Are you sure you want to overwrite it ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
+			int r = JOptionPane.showConfirmDialog(jContentPane, "The file < " + sFileName + " >\n already exists on Local Machine\n Are you sure you want to overwrite it ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
 			if (r == JOptionPane.NO_OPTION)
 				return;
 		}
997
@@ -979,23 +1330,101 @@
998 999 1000 1001
 		viewer.rfb.requestRemoteFile(remoteFileName,localDestinationPath);
 	}
 
+// begin runge/x11vnc
1002 1003 1004 1005 1006 1007 1008
+	private void doRefresh()
+	{
+		System.out.println("Refreshing Local and Remote.");
+		refreshLocalLocation();
+		refreshRemoteLocation();
+	}
+
1009 1010
+	private void doView()
+	{
1011
+//		System.out.println("View Button Pressed");
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
+
+		if (selectedTable == null) {
+			return;
+		}
+		if (selectedTable.equals("remote")) {
+			viewRemote();
+		} else if (selectedTable.equals("local")) {
+			viewLocal();
+		}
+	}
+
+	private File doReceiveTmp()
+	{
+
+		if (remoteFileTable == null) {
+			return null;
+		}
1029 1030 1031 1032 1033 1034
+		Object selected = this.remoteFileTable.getSelectedValue();
+		if (selected == null) {
+			return null;
+		}
+		String sFileName = ((String) selected);
+		
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
+		if (sFileName == null) {
+			return null;
+		}
+		
+		// sf@2004 - Directory can't be transfered
+		if (sFileName.substring(0, 2).equals(" [") && sFileName.substring((sFileName.length() - 1), sFileName.length()).equals("]"))
+		{
+			return null;
+		}
+		
+		File tmp = null;
+		try {
+			tmp = File.createTempFile("ULTRAFTP", ".txt");
+		} catch (Exception e) {
+			return null;
+		}
+		
+		//updateHistory("Downloaded " + localSelection.toString());
+		String remoteFileName = this.remoteLocation.getText();
+		remoteFileName+= ((String) this.remoteFileTable.getSelectedValue()).substring(1);
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
+		System.out.println("remoteFileName: " + remoteFileName);
+if (false) {
+		char[] b = remoteFileName.toCharArray();
+		for (int n = 0; n < b.length; n++) {
+			System.out.print(Integer.toHexString(b[n]) + " ");
+		}
+		System.out.println("");
+		for (int n = 0; n < b.length; n++) {
+			System.out.print(b[n]);
+		}
+		System.out.println("");
+}
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
+		
+		String localDestinationPath = tmp.getAbsolutePath();
+		viewer.rfb.requestRemoteFile(remoteFileName,localDestinationPath);
+		System.out.println("ReceiveTmp: " + localDestinationPath);
+		return tmp;
+	}
+// end   runge/x11vnc
+
 	private void doSend()
 	{
1077 1078 1079
-		System.out.println("Send Button Pressed");
+//		System.out.println("Send Button Pressed");
 
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
-		String sFileName = ((String) this.localFileTable.getSelectedValue());
+		Object selected = this.localFileTable.getSelectedValue();
+		if (selected == null) {
+			return;
+		}
+		String sFileName = ((String) selected);
 		
 		// sf@2004 - Directory can't be transfered
 		if (sFileName.substring(0, 2).equals(" [") && sFileName.substring((sFileName.length() - 1), sFileName.length()).equals("]"))
 		{
-			JOptionPane.showMessageDialog(null, (String)"Directory Transfer is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
+			JOptionPane.showMessageDialog(jContentPane, (String)"Directory Transfer is not yet available in this version...", "FileTransfer Info", JOptionPane.INFORMATION_MESSAGE);
 			return;
 		}
1094
 		
1095 1096 1097 1098 1099 1100 1101 1102
 		// sf@2004 - Overwrite prompt
 		if (remoteList.contains(sFileName))
 		{
-			int r = JOptionPane.showConfirmDialog(null, "The file < " + sFileName + " >\n already exists on Remote Machine\n Are you sure you want to overwrite it ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
+			int r = JOptionPane.showConfirmDialog(jContentPane, "The file < " + sFileName + " >\n already exists on Remote Machine\n Are you sure you want to overwrite it ?", "File Transfer Warning", JOptionPane.YES_NO_OPTION);
 			if (r == JOptionPane.NO_OPTION)
 				return;
 		}
1103
@@ -1013,6 +1442,7 @@
1104 1105 1106 1107 1108 1109 1110
 	// 
 	private void doStop()
 	{
+		System.out.println("** Current Transfer Aborted **");
 		viewer.rfb.fAbort = true;
 	}
 	/**
1111
@@ -1024,6 +1454,14 @@
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
 		System.out.println("History: " + message);
 		historyComboBox.insertItemAt(new String(message), 0);
 	}
+
+	public void receivedRemoteDirectoryName(String str) {
+		if (doingShortcutDir) {
+			if (str.length() > 1) {
+				remoteLocation.setText(str);
+			}
+		}
+	}
 	
 	/**
 	 * This method updates the file table to the current selection of the remoteComboBox
1126
@@ -1034,11 +1472,44 @@
1127
 		remoteSelection = null;
1128 1129
 	
 		if (!updateDriveList) {
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
-			String drive =	remoteDrivesComboBox.getSelectedItem().toString().substring(0,1)+ ":\\";
-			viewer.rfb.readServerDirectory(drive);
-			remoteLocation.setText(drive);
+//System.out.println("changeRemoteDrive-A " + drive);	// begin runge/x11vnc
+			Object selected = remoteDrivesComboBox.getSelectedItem();
+			if (selected != null)  {
+				String instr =	selected.toString();
+				if (instr != null) {
+System.out.println("changeRemoteDrive: instr='" + instr + "'");
+					String drive =	instr.substring(0,1)+ ":\\";
+					if (instr.startsWith(" [")) {
+						int idx = instr.lastIndexOf(']'); 
+						if (idx > 2) {
+							drive = instr.substring(2, idx);
+						} else {
+							drive = instr.substring(2);
+						}
1147 1148 1149
+						if (drive.equals("Home")) {
+							drive = "";
+						}
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
+						drive += "\\";
+						doingShortcutDir = true;
+					} else {
+						doingShortcutDir = false;
+						drive = saveRemoteHack(drive);
+					}
+					gotShortcutDir = false;
+					viewer.rfb.readServerDirectory(drive);
+					if (!gotShortcutDir) {
+						remoteLocation.setText(drive);
+					}
+				} else {
+System.out.println("changeRemoteDrive: instr null");
+				}
+			} else {
+System.out.println("changeRemoteDrive: selection null");
+			}
+//System.out.println("changeRemoteDrive-B " + drive);	// end runge/x11vnc
1168 1169
 		}
 		remoteList.clear();
1170
+		remoteListInfo.clear();
1171
 		remoteFileTable.setListData(remoteList);
1172 1173
 	}
 	/**
1174
@@ -1048,6 +1519,7 @@
1175 1176 1177 1178 1179 1180 1181
 	private void changeLocalDrive()
 	{
 		File currentDrive = new File(localDrivesComboBox.getSelectedItem().toString());
+System.out.println("changeLocalDrive " + currentDrive.toString());	// runge/x11vnc
 		if(currentDrive.canRead())
 		{
 			localSelection = null;
1182
@@ -1057,9 +1529,11 @@
1183 1184 1185 1186
 		else
 		{
 			localList.clear();
+			localListInfo.clear();
1187 1188 1189 1190 1191 1192 1193
 			localStatus.setText("WARNING: Drive " + localDrivesComboBox.getSelectedItem().toString());
 			connectionStatus.setText(" > WARNING - Local Drive unavailable (possibly restricted access or media not present)");
 		}
+
 	}
 	/**
 	 * Determines which FileTable was double-clicked and updates the table
1194
@@ -1098,10 +1572,18 @@
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
 		selectedTable = "remote";
 		localFileTable.setBackground(new Color(238, 238, 238));
 		remoteFileTable.setBackground(new Color(255, 255, 255));
-		String name = (remoteFileTable.getSelectedValue().toString()).substring(1);
+		Object selected = remoteFileTable.getSelectedValue();
+		if (selected == null) {
+			return;
+		}
+		String selstr = selected.toString();
+		if (selstr == null) {
+			return;
+		}
+		String name = selstr.substring(1);
1208 1209 1210 1211 1212 1213 1214
 		if( !name.substring(0, 2).equals(" ["))	
 			remoteSelection = remoteLocation.getText() + name.substring(0, name.length());
-		
+
 	}
 
 	/*
1215
@@ -1115,10 +1597,38 @@
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
 		localFileTable.setBackground(new Color(255, 255, 255));
 		File currentSelection = new File(currentLocalDirectory, getTrimmedSelection());
 		
-		if(currentSelection.isFile()) 
+// begin runge/x11vnc
+		// localSelection = currentSelection.getAbsoluteFile();
+		if(currentSelection.isFile()) {
 			localSelection = currentSelection.getAbsoluteFile();
+			localCurrentIsDir = false;
+		} else {
+			localCurrentIsDir = true;
+		}
+// end   runge/x11vnc
 
 	}
+
+// begin runge/x11vnc
+	private void viewRemote() {
+		File tmp = doReceiveTmp();
+		if (tmp == null) {
+			return;
+		}
+		TextViewer tv = new TextViewer("Remote: " + remoteSelection, tmp, true);
+	}
+	private void viewLocal() {
+		if (localSelection == null) {
+			return;
+		}
+		if (localCurrentIsDir) {
+			return;
+		}
+		File loc = new File(localSelection.toString());
+		TextViewer tv = new TextViewer("Local: " + localSelection.toString(), loc, false);
+	}
+// end runge/x11vnc
+
 	/**
 	 * Updates the Remote File Table based on selection.  Called from mouseClicked handler
 	 */
1255
@@ -1126,20 +1636,29 @@
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
 		String name = null;
 		String action = null;
 		String drive = null;
-		name = (remoteFileTable.getSelectedValue().toString()).substring(1);
+		Object selected = remoteFileTable.getSelectedValue();
+		if (selected == null) {
+			return;
+		}
+		String sname = selected.toString();
+		if (sname == null) {
+			return;
+		}
+		name = sname.substring(1);
 
 		if (name.equals("[..]"))
 		{
 			action = "up";
 			remoteSelection = null;
 			drive = remoteLocation.getText().substring(0, remoteLocation.getText().length() - 1);
-			// JOptionPane.showMessageDialog(null, (String)drive, "FileTransfer DEBUG", JOptionPane.INFORMATION_MESSAGE);
+			// JOptionPane.showMessageDialog(jContentPane, (String)drive, "FileTransfer DEBUG", JOptionPane.INFORMATION_MESSAGE);
 			int index = drive.lastIndexOf("\\");
 			drive = drive.substring(0, index + 1);
 
1280 1281 1282 1283 1284 1285 1286
 			remoteLocation.setText(drive);
 			viewer.rfb.readServerDirectory(drive);
 			remoteList.clear();
+			remoteListInfo.clear();
 			remoteFileTable.setListData(remoteList);	
 		}
 		else if (!name.substring(0, 2).equals(" [") && !name.substring((name.length() - 1), name.length()).equals("]"))
1287
@@ -1149,6 +1668,7 @@
1288 1289 1290 1291 1292 1293 1294
 			remoteSelection = remoteLocation.getText() + name.substring(0, name.length());
 			drive = remoteLocation.getText();
 			// ??
+			viewRemote();	// runge/x11vnc
 		}
 		else
 		{ 
1295
@@ -1159,10 +1679,12 @@
1296 1297 1298 1299 1300
 			remoteLocation.setText(drive);
 			viewer.rfb.readServerDirectory(drive);
 			remoteList.clear();
+			remoteListInfo.clear();
 			remoteFileTable.setListData(remoteList);	
1301 1302 1303 1304 1305 1306 1307
 		}	
 		//remoteLocation.setText(drive);	
 	}
+
 	/**
 	 * Updates the Local File Table based on selection. Called from MouseClicked handler
 	 */
1308
@@ -1188,6 +1710,7 @@
1309 1310 1311 1312 1313 1314 1315
 		else if (currentSelection.isFile())
 		{
 			localSelection = currentSelection.getAbsoluteFile();
+			viewLocal();	// runge/x11vnc
 		}
 		else if (currentSelection.isDirectory())
 		{
1316
@@ -1201,13 +1724,22 @@
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
 	 * 
 	 */
 	private String getTrimmedSelection(){
-		String currentSelection = (localFileTable.getSelectedValue().toString()).substring(1);
-				if(currentSelection.substring(0,1).equals("[") &&
-				currentSelection.substring(currentSelection.length()-1,currentSelection.length()).equals("]")){
-				return currentSelection.substring(1,currentSelection.length()-1);
-				} else {
-					return currentSelection;
-				}
+		String currentSelection = "";
+		Object selected = localFileTable.getSelectedValue();
+		if (selected == null) {
+			return currentSelection;
+		}
+		String selstr = selected.toString();
+		if (selstr == null) {
+			return currentSelection;
+		}
+		currentSelection = selstr.substring(1);
+		if(currentSelection.substring(0,1).equals("[") &&
+			currentSelection.substring(currentSelection.length()-1,currentSelection.length()).equals("]")){
+			return currentSelection.substring(1,currentSelection.length()-1);
+		} else {
+			return currentSelection;
+		}
 	}
 
 	/*
1346
@@ -1241,36 +1773,148 @@
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
 	 	return null;
 	}
 	
+	String timeStr(long t) {
+		Date date = new Date(t);
+		return date.toString();
+	}
+	String dotPast(double f, int n) {
+		String fs = "" + f;
+		int i = fs.lastIndexOf(".") + n;
+		if (i >= 0) {
+			int len = fs.length();
+			if (i >= len) {
+				i = len-1;
+			}
+			fs = fs.substring(0, i);
+		}
+		return fs;
+	}
+	String sizeStr(int s) {
+		if (s < 0) {
+			return s + "? B";
+		} else if (s < 1024) {
+			return s + " B";
+		} else if (s < 1024 * 1024) {
+			double k = s / 1024.0;
+			String ks = dotPast(k, 3);
+			
+			return s + " (" + ks + " KB)";
+		} else {
+			double m = s / (1024.0*1024.0);
+			String ms = dotPast(m, 3);
+			return s + " (" + ms + " MB)";
+		}
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
+	}
+
+	int max_char(String text) {
+		int maxc = 0;
+		char chars[] = text.toCharArray();
+		for (int n = 0; n < chars.length; n++) {
+			if ((int) chars[n] > maxc) {
+				maxc = (int) chars[n];
+			}
+		}
+		return maxc;
1392 1393 1394 1395
+	}
 
 	/*
 	 * Navigates the local file structure up or down one directory
1396 1397 1398
 	 */
 	public void changeLocalDirectory(File dir)
 	{
1399
-			currentLocalDirectory = dir;	// Updates Global
1400 1401
+			dir = saveLocalHack(dir);	// runge/x11vnc
+
1402 1403
+			if (dir == null) {
+				connectionStatus.setText("Error changing local directory.");
1404 1405
+				historyComboBox.insertItemAt(new String("> Error changing local directory."), 0);
+				historyComboBox.setSelectedIndex(0);
1406 1407 1408
+				return;
+			}
+
1409 1410
 			File allFiles[] = dir.listFiles();	// Reads files
 			String[] contents = dir.list();
1411 1412 1413
 
+			if (contents == null || allFiles == null) {
+				connectionStatus.setText("Error changing local directory.");
1414 1415
+				historyComboBox.insertItemAt(new String("> Error changing local directory."), 0);
+				historyComboBox.setSelectedIndex(0);
1416 1417 1418 1419
+				return;
+			}
+
+			currentLocalDirectory = dir;	// Updates Global
1420 1421 1422 1423 1424 1425 1426
+// begin runge/x11vnc
+System.out.println("changeLocalDirectory: " + dir.toString());
+			if (contents != null) {
+				java.util.Arrays.sort(contents, String.CASE_INSENSITIVE_ORDER);
+				for (int i = 0; i < contents.length; i++) {
+					allFiles[i] = new File(dir, contents[i]);
+				}
1427 1428
+			} else {
+				return;
1429 1430
+			}
+// end runge/x11vnc
1431
+
1432
 			localList.clear();
1433
+			localListInfo.clear();
1434
 			localList.addElement(" [..]");
1435 1436 1437 1438
+			localListInfo.addElement(" [..]");
+
+			ArrayList DirInfo = new ArrayList();
+			ArrayList FilInfo = new ArrayList();
1439 1440 1441 1442
+
+			Charset charset = Charset.forName("ISO-8859-1");
+			CharsetDecoder decoder = charset.newDecoder();
+			CharsetEncoder encoder = charset.newEncoder();
1443
 			
1444 1445 1446 1447
 			// Populate the Lists
 			for (int i = 0; i < contents.length; i++)
 			{
-				if (allFiles[i].isDirectory())
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
+				String f1 = contents[i];
+
+if (false) {
+	
+System.out.println("max_char: " + max_char(f1) + " "  + f1);
+				if (max_char(f1) > 255) {
+					try {
+System.out.println("bbuf1");
+						ByteBuffer bbuf = encoder.encode(CharBuffer.wrap(f1.toCharArray()));
+System.out.println("bbuf2");
+						CharBuffer cbuf = decoder.decode(bbuf);
+System.out.println("bbuf3");
+						f1 = cbuf.toString(); 
+System.out.println("did bbuf: " + f1);
+					} catch (Exception e) {
+						;
+					}
+				}
+}
+				
+				String f2 = f1;
1469 1470 1471 1472 1473 1474 1475 1476
+				if (f2.length() < 24) {
+					for (int ik = f2.length(); ik < 24; ik++) {
+						f2 = f2 + " ";
+					}
+				}
+				String s = f2 + "    \tLastmod: " + timeStr(allFiles[i].lastModified()) + "    \t\tSize: " + sizeStr((int) allFiles[i].length()); 
+				if (allFiles[i].isDirectory()) {
 					// localList.addElement("[" + contents[i] + "]");
1477
-					DirsList.add(" [" + contents[i] + "]"); // sf@2004
1478 1479
-				else
-				{
1480
+					DirsList.add(" [" + f1 + "]"); // sf@2004
1481 1482 1483
+					DirInfo.add(s);
+				} else {
 					// localList.addElement(contents[i]);
1484 1485
-					FilesList.add(" " + contents[i]); // sf@2004
+					FilesList.add(" " + f1); // sf@2004
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
+					FilInfo.add(s);
 				}
 			}
 			// sf@2004
-			for (int i = 0; i < DirsList.size(); i++) 
+			for (int i = 0; i < DirsList.size(); i++) {
 				localList.addElement(DirsList.get(i));
-			for (int i = 0; i < FilesList.size(); i++) 
+				localListInfo.addElement(DirInfo.get(i));
+			}
+			for (int i = 0; i < FilesList.size(); i++) {
 				localList.addElement(FilesList.get(i));
+				localListInfo.addElement(FilInfo.get(i));
+			}
 			
 			FilesList.clear();
 			DirsList.clear();
1503
@@ -1296,3 +1940,147 @@
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
 	}
 
 } //  @jve:visual-info  decl-index=0 visual-constraint="10,10"
+
+// begin runge/x11vnc
+class TextViewer extends JFrame implements ActionListener {
+
+	JTextArea textArea = new JTextArea(35, 80);
+	File file = null;
+	JButton refreshButton;
+	JButton dismissButton;
+	Timer tim = null;
+	int rcnt = 0;
+	int tms = 250;
+	boolean delete_it = false;
1519
+	TextViewer me;
1520 1521 1522 1523 1524
+
+	public TextViewer(String s, File f, boolean d) {
+
+		delete_it = d;
+		file = f;
1525
+		me = this;
1526 1527 1528 1529 1530 1531 1532 1533
+
+		JScrollPane scrollPane = new JScrollPane(textArea,
+		    JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
+		    JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
+
+		textArea.setEditable(false);
+		textArea.setFont(new Font("Monospaced", Font.PLAIN, 12));
+
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
+		KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, InputEvent.SHIFT_MASK);
+		AbstractAction escapeAction = new AbstractAction() {
+			public void actionPerformed(ActionEvent actionEvent) {
+				cleanse();
+				me.dispose();
+			}
+		};
+		textArea.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(stroke, "escapeAction");
+		textArea.getInputMap().put(stroke, "escapeAction");
+		textArea.getActionMap().put("escapeAction", escapeAction);
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
+
+		refreshButton = new JButton();
+		refreshButton.setText("Reload");
+		refreshButton.setName("refreshButton");
+		refreshButton.addActionListener(this);
+
+		dismissButton = new JButton();
+		dismissButton.setText("Dismiss");
+		dismissButton.setName("dismissButton");
+		dismissButton.addActionListener(this);
+
+		JPanel buttons = new JPanel();
+		buttons.setLayout(new BorderLayout());
+		buttons.add(refreshButton, BorderLayout.WEST);
+		buttons.add(dismissButton, BorderLayout.EAST);
+
+		JPanel content = new JPanel();
+		content.setLayout(new BorderLayout());
+		content.add(scrollPane, BorderLayout.CENTER);
+		content.add(buttons, BorderLayout.SOUTH);
+
+		ActionListener tsk = new ActionListener() {
+			public void actionPerformed(ActionEvent evt) {
+				// System.out.println("tsk");
+				refresh();
+			}
+		};
+		tim = new Timer(tms, tsk);
+		tim.start();
+
+		this.setContentPane(content);
+		this.setTitle("TextViewer - " + s);
+		this.pack();
+		this.setVisible(true);
+	}
+
+	private void refresh() {
+
+		rcnt++;
+		if (rcnt * tms > 3000 && tim != null) {
+			tim.stop();
+			tim = null;
+		}
+		BufferedReader input = null;
+		StringBuffer contents = new StringBuffer();
+		try {
+			if (input == null) {
+				input = new BufferedReader(new FileReader(file));
+			}
+			String line = null;
+			int i = 0;
+			while (( line = input.readLine()) != null) {
+				if (i == 0) {
+					// System.out.println("read");
+				}
+				i++;
+				contents.append(line);
+				contents.append(System.getProperty("line.separator"));
+			}
+		} catch (Exception e) {
+			;
+		} finally {
+			try {
+				if (input != null) {
+					input.close();
+					input = null;
+				}
+			} catch (Exception e) {
+				;
+			}
+		}
+
+		textArea.setText(contents.toString());
+		textArea.setCaretPosition(0);
+	}
+
+	public void actionPerformed(ActionEvent evt) {
+
+		if (evt.getSource() == refreshButton) {
+			refresh();
+		}
+		if (evt.getSource() == dismissButton) {
+			cleanse();
+			this.dispose();
+		}
+	}
+
+	private void cleanse() {
+		if (delete_it && file != null) {
+			try {
+				file.delete();
+				file = null;
+			} catch (Exception e) {
+				;
+			}
+		}
+	}
+
+	protected void finalize() throws Throwable {
+		try {
+			cleanse();
+		} finally {
+			super.finalize();
+		}
+	}
+}
+// end runge/x11vnc
diff -Naur JavaViewer.orig/OptionsFrame.java JavaViewer/OptionsFrame.java
--- JavaViewer.orig/OptionsFrame.java	2005-11-21 18:50:16.000000000 -0500
+++ JavaViewer/OptionsFrame.java	2007-05-13 22:18:30.000000000 -0400
@@ -144,7 +144,10 @@
     choices[jpegQualityIndex].select("6");
     choices[cursorUpdatesIndex].select("Enable");
     choices[useCopyRectIndex].select("Yes");
-    choices[eightBitColorsIndex].select("64");
+// begin runge/x11vnc
+//    choices[eightBitColorsIndex].select("64");
+    choices[eightBitColorsIndex].select("Full");
+// end runge/x11vnc
     choices[mouseButtonIndex].select("Normal");
     choices[viewOnlyIndex].select("No");
     choices[shareDesktopIndex].select("Yes");
diff -Naur JavaViewer.orig/RfbProto.java JavaViewer/RfbProto.java
--- JavaViewer.orig/RfbProto.java	2006-05-24 15:14:40.000000000 -0400
1668
+++ JavaViewer/RfbProto.java	2008-10-06 13:32:30.000000000 -0400
1669 1670 1671 1672 1673 1674 1675 1676 1677
@@ -31,6 +31,7 @@
 import java.net.Socket;
 import java.util.*;
 import java.util.zip.*;
+import java.text.DateFormat;
 
 
 class RfbProto {
@@ -86,8 +87,11 @@
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
 
 	// sf@2004 - FileTransfer part
 	ArrayList remoteDirsList;
+	ArrayList remoteDirsListInfo;
 	ArrayList remoteFilesList;
+	ArrayList remoteFilesListInfo;
 	ArrayList a;
+	ArrayList b;
 	boolean fFTInit = true; // sf@2004
 	boolean fFTAllowed = true;
 	boolean fAbort = false;
1689
@@ -199,6 +203,10 @@
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
 	// playback.
 	int numUpdatesInSession;
 
+// begin runge/x11vnc
+	int readServerDriveListCnt = -1;
+	long readServerDriveListTime = 0;
+// end   runge/x11vnc
 	//
 	// Constructor. Make TCP connection to RFB server.
 	//
1700
@@ -207,7 +215,27 @@
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
 		viewer = v;
 		host = h;
 		port = p;
-		sock = new Socket(host, port);
+// begin runge/x11vnc
+//		sock = new Socket(host, port);
+    if (! viewer.disableSSL) {
+       System.out.println("new SSLSocketToMe");
+       SSLSocketToMe ssl;
+       try {
+               ssl = new SSLSocketToMe(host, port, v);
+       } catch (Exception e) {
+               throw new IOException(e.getMessage());
+       }
+
+       try {
+               sock = ssl.connectSock();
+       } catch (Exception es) {
+               throw new IOException(es.getMessage());
+       }
+    } else {
+       sock = new Socket(host, port);
+    }
+// end runge/x11vnc
+
 		is =
 			new DataInputStream(
 				new BufferedInputStream(sock.getInputStream(), 16384));
1729
@@ -215,9 +243,12 @@
1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
 		osw = new OutputStreamWriter(sock.getOutputStream());
 		inDirectory2 = false;
 		a = new ArrayList();
+		b = new ArrayList();
 		// sf@2004
 		remoteDirsList = new ArrayList();
+		remoteDirsListInfo = new ArrayList();
 		remoteFilesList = new ArrayList();
+		remoteFilesListInfo = new ArrayList();
 	
 		sendFileSource = "";
 	}
1742
@@ -420,7 +451,13 @@
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
 	//
 
 	int readServerMessageType() throws IOException {
-		int msgType = is.readUnsignedByte();
+		int msgType;
+		try {
+			msgType = is.readUnsignedByte();
+		} catch (Exception e) {
+			viewer.disconnect();
+			return -1;
+		}
 
 		// If the session is being recorded:
 		if (rec != null) {
1757
@@ -600,6 +637,7 @@
1758 1759 1760 1761 1762 1763 1764
 		contentParamT = is.readUnsignedByte();
 		contentParamT = contentParamT << 8;
 		contentParam = contentParam | contentParamT;
+//System.out.println("FTM: contentType " + contentType + " contentParam " + contentParam);
 		if (contentType == rfbRDrivesList || contentType == rfbDirPacket)
 		{
 			readDriveOrDirectory(contentParam);
1765
@@ -610,7 +648,7 @@
1766 1767 1768 1769 1770 1771 1772 1773
 		}
 		else if (contentType == rfbFilePacket)
 		{
-				receiveFileChunk();
+			receiveFileChunk();
 		}
 		else if (contentType == rfbEndOfFile)
 		{
1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797
@@ -618,6 +656,10 @@
 		}
 		else if (contentType == rfbAbortFileTransfer)
 		{
+			System.out.println("rfbAbortFileTransfer: fFileReceptionRunning="
+			    + fFileReceptionRunning + " fAbort="
+			    + fAbort + " fFileReceptionError="
+			    + fFileReceptionError);
 			if (fFileReceptionRunning)
 			{
 				endOfReceiveFile(false); // Error
@@ -626,6 +668,11 @@
 			{
 				// sf@2004 - Todo: Add TestPermission 
 				// System.out.println("File Transfer Aborted!");
+
+				// runge: seems like we must at least read the remaining
+				// 8 bytes of the header, right?
+				int size = is.readInt();
+				int length = is.readInt();
 			}
 			
 		}
@@ -645,6 +692,7 @@
1798 1799 1800 1801 1802 1803 1804
 		{
 			System.out.println("ContentType: " + contentType);
 		}
+//System.out.println("FTM: done");
 	}
 
 	//Refactored from readRfbFileTransferMsg()
1805 1806 1807 1808 1809 1810 1811 1812
@@ -662,6 +710,7 @@
 
 	//Refactored from readRfbFileTransferMsg()
 	public void readDriveOrDirectory(int contentParam) throws IOException {
+//System.out.println("RDOD: " + contentParam + " " + inDirectory2);
 		if (contentParam == rfbADrivesList)
 		{
 			readFTPMsgDriveList();
1813
@@ -688,13 +737,21 @@
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
 
 	// Internally used. Write an Rfb message to the server
 	void writeRfbFileTransferMsg(
-								int contentType,
-								int contentParam,
-								long size, // 0 : compression not supported - 1 : compression supported
-								long length,
-								String text) throws IOException
+		int contentType,
+		int contentParam,
+		long size, // 0 : compression not supported - 1 : compression supported
+		long length,
+		String text) throws IOException
 	{
 		byte b[] = new byte[12];
1829 1830
+		byte byteArray[];
+
1831 1832 1833 1834 1835 1836
+		if (viewer.dsmActive) {
+			// need to send the rfbFileTransfer msg type twice for the plugin...
+			byte b2[] = new byte[1];
+			b2[0] = (byte) rfbFileTransfer;
+			os.write(b2);
+		}
1837
 
1838 1839
 		b[0] = (byte) rfbFileTransfer;
 		b[1] = (byte) contentType;
1840
@@ -702,7 +759,7 @@
1841 1842 1843 1844 1845 1846 1847 1848
 
 		byte by = 0;
 		long c = 0;
-		length++;
+
 		c = size & 0xFF000000;
 		by = (byte) (c >>> 24);
 		b[4] = by;
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
@@ -716,6 +773,32 @@
 		by = (byte) c;
 		b[7] = by;
 
+		if (text != null) {
+			byte byteArray0[] = text.getBytes();
+			int maxc = max_char(text);
+			if (maxc > 255) {
+				System.out.println("writeRfbFileTransferMsg: using getBytes(\"UTF-8\")");
+				byteArray0 = text.getBytes("UTF-8");
+			} else if (maxc > 127) {
+				System.out.println("writeRfbFileTransferMsg: using getBytes(\"ISO-8859-1\")");
+				byteArray0 = text.getBytes("ISO-8859-1");
+			}
+			byteArray = new byte[byteArray0.length + 1];
+			for (int i = 0; i < byteArray0.length; i++) {
+				byteArray[i] = byteArray0[i];
+			}
+			byteArray[byteArray.length - 1] = 0;
+System.out.println("writeRfbFileTransferMsg: length: " + length + " -> byteArray.length: " + byteArray.length);
+
+			// will equal length for ascii, ISO-8859-1, more for UTF-8
+			length = byteArray.length;
+
+			//length++;	// used to not include null byte at end.
+		} else {
+			String moo = "moo";
+			byteArray = moo.getBytes();
+		}
+
 		c = length & 0xFF000000;
 		by = (byte) (c >>> 24);
 		b[8] = by;
@@ -729,29 +812,91 @@
1883 1884 1885 1886 1887 1888 1889 1890
 		by = (byte) c;
 		b[11] = by;
 		os.write(b);
+
+//System.out.println("size: " + size + " length: " + length + " text: " + text);
 		
 
 		if (text != null)
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
 		{
-			byte byteArray[] = text.getBytes();
-			byte byteArray2[] = new byte[byteArray.length + 1];
-			for (int i = 0; i < byteArray.length; i++) {
-				byteArray2[i] = byteArray[i];
+			os.write(byteArray);
+		}
+	}
+
+	int max_char(String text) {
+		int maxc = 0;
+		char chars[] = text.toCharArray();
+		for (int n = 0; n < chars.length; n++) {
+			if ((int) chars[n] > maxc) {
+				maxc = (int) chars[n];
 			}
-			byteArray2[byteArray2.length - 1] = 0;
-			os.write(byteArray2);
 		}
-		
+		return maxc;
+	}
+
+	String guess_encoding(char[] chars) {
+		boolean saw_high_char = false;
+
+		for (int i = 0; i < chars.length; i++) {
+			if (chars[i] == '\0') {
+				break;
+			}
+			if (chars[i] >= 128) {
+				saw_high_char = true;
+				break;
+			}
+		}
+		if (!saw_high_char) {
+			return "ASCII";
+		}
+		char prev = 1;
+		boolean valid_utf8 = true;
+		int n = 0;
+		for (int i = 0; i < chars.length; i++) {
+			if (chars[i] == '\0') {
+				break;
+			}
+			char c = chars[i];
+			if (prev < 128 && c >= 128) {
+				if (c >> 5 == 0x6) {
+					n = 1;
+				} else if (c >> 4 == 0xe) {
+					n = 2;
+				} else if (c >> 3 == 0x1e) {
+					n = 3;
+				} else if (c >> 2 == 0x3e) {
+					n = 4;
+				} else {
+					valid_utf8 = false;
+					break;
+				}
+			} else {
+				if (n > 0) {
+					if (c < 128) {
+						valid_utf8 = false;
+						break;
+					}
+					n--;
+				}
+			}
+
+			prev = c;
+		}
+		if (valid_utf8) {
+			return "UTF-8";
+		} else {
+			return "ISO-8859-1";
+		}
 	}
1968
 
1969
+
1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
 	//Internally used. Write an rfb message to the server for sending files ONLY 
 	int writeRfbFileTransferMsgForSendFile(
-											int contentType,
-											int contentParam,
-											long size,
-											long length,
-											String source
-											) throws IOException
+		int contentType,
+		int contentParam,
+		long size,
+		long length,
+		String source
+		) throws IOException
 	{
 		File f = new File(source);
 		fis = new FileInputStream(f);
1987
@@ -768,50 +913,47 @@
1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052
 	
 		while (bytesRead!=-1)
 		{
-				counter += bytesRead;
-				myDeflater.setInput(byteBuffer, 0, bytesRead);
-				myDeflater.finish();
-				compressedSize = myDeflater.deflate(CompressionBuffer);
-				myDeflater.reset();
-				// If the compressed data is larger than the original one, we're dealing with
-				// already compressed data
-				if (compressedSize > bytesRead)
-					fCompress = false;
-				this.writeRfbFileTransferMsg(
-											contentType,
-											contentParam,
-											(fCompress ? 1 : 0), 
-											(fCompress ? compressedSize-1 : bytesRead-1),
-											null
-											);
-				// Todo: Test write error !
-				os.write(
-						fCompress ? CompressionBuffer : byteBuffer,
-						0,
-						fCompress ? compressedSize : bytesRead
-						);
-				
-				// Todo: test read error !
-				bytesRead = fis.read(byteBuffer);
-				
-				// viewer.ftp.connectionStatus.setText("Sent: "+ counter + " bytes of "+ f.length() + " bytes");
-				viewer.ftp.jProgressBar.setValue((int)((counter * 100) / f.length()));
-				viewer.ftp.connectionStatus.setText(">>> Sending File: " + source + " - Size: " + f.length() + " bytes - Progress: " + ((counter * 100) / f.length()) + "%");
-				
-				if (fAbort == true)
-				{
-					fAbort = false;
-					fError = true;
-					break;
-				}
-				try
-				{
-			        Thread.sleep(5);
-			    }
-				catch(InterruptedException e)
-				{
-			        System.err.println("Interrupted");
-			    }				
+			counter += bytesRead;
+			myDeflater.setInput(byteBuffer, 0, bytesRead);
+			myDeflater.finish();
+			compressedSize = myDeflater.deflate(CompressionBuffer);
+			myDeflater.reset();
+			// If the compressed data is larger than the original one, we're dealing with
+			// already compressed data
+			if (compressedSize > bytesRead)
+				fCompress = false;
+			this.writeRfbFileTransferMsg(
+				contentType,
+				contentParam,
+				(fCompress ? 1 : 0), 
+// RUNGE				(fCompress ? compressedSize-1 : bytesRead-1),
+				(fCompress ? compressedSize : bytesRead),
+				null
+			);
+			// Todo: Test write error !
2053
+			os.write(fCompress ? CompressionBuffer : byteBuffer, 0, fCompress ? compressedSize : bytesRead);
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
+			
+			// Todo: test read error !
+			bytesRead = fis.read(byteBuffer);
+			
+			// viewer.ftp.connectionStatus.setText("Sent: "+ counter + " bytes of "+ f.length() + " bytes");
+			viewer.ftp.jProgressBar.setValue((int)((counter * 100) / f.length()));
+			viewer.ftp.connectionStatus.setText(">>> Sending File: " + source + " - Size: " + f.length() + " bytes - Progress: " + ((counter * 100) / f.length()) + "%");
+			
+			if (fAbort == true)
+			{
+				fAbort = false;
+				fError = true;
+				break;
+			}
+			try
+			{
+		        Thread.sleep(5);
+		    }
+			catch(InterruptedException e)
+			{
+		        System.err.println("Interrupted");
+		    }				
 		}
 		
 		writeRfbFileTransferMsg(fError ? rfbAbortFileTransfer : rfbEndOfFile, 0, 0, 0, null);
2079
@@ -831,24 +973,30 @@
2080 2081 2082
 			{
 				System.out.print((char) is.readUnsignedByte());
 			}
2083
+			System.out.println("");
2084 2085 2086 2087
+
+			if (size == rfbRErrorCmd || size == -1) {
+				viewer.ftp.enableButtons();
+				viewer.ftp.connectionStatus.setText("Remote file not available for writing.");
2088 2089
+				viewer.ftp.historyComboBox.insertItemAt(new String(" > Error - Remote file not available for writing."), 0);
+				viewer.ftp.historyComboBox.setSelectedIndex(0);
2090 2091 2092
+				return;
+			}
 			
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117
-			int ret = writeRfbFileTransferMsgForSendFile(
-															rfbFilePacket,
-															0,
-															0,
-															0,
-															sendFileSource);
+			int ret = writeRfbFileTransferMsgForSendFile(rfbFilePacket, 0, 0, 0, sendFileSource);
 	
 			viewer.ftp.refreshRemoteLocation();
 			if (ret != 1)
 			{
 				viewer.ftp.connectionStatus.setText(" > Error - File NOT sent");
-				viewer.ftp.historyComboBox.insertItemAt(new String(" > Error - File: <" + sendFileSource) + "> was not correctly sent (aborted by user or error)",0);
+				viewer.ftp.historyComboBox.insertItemAt(new String(" > Error - File: <" + sendFileSource)
+				    + "> was not correctly sent (aborted or error). Data may still be buffered/in transit. Wait for remote listing...",0);
 			}
 			else
 			{
 				viewer.ftp.connectionStatus.setText(" > File sent");
-				viewer.ftp.historyComboBox.insertItemAt(new String(" > File: <" + sendFileSource) + "> was sent to Remote Machine",0);
+				viewer.ftp.historyComboBox.insertItemAt(new String(" > File: <" + sendFileSource)
+				    + "> was sent to Remote Machine. Note: data may still be buffered/in transit. Wait for remote listing...",0);
 			}
 			viewer.ftp.historyComboBox.setSelectedIndex(0);
 			viewer.ftp.enableButtons();
2118
@@ -907,7 +1055,7 @@
2119 2120 2121 2122 2123 2124 2125 2126
 	//Handles acknowledgement that the file has been deleted on the server
 	void deleteRemoteFileFeedback() throws IOException
 	{
-		is.readInt();
+		int ret = is.readInt();
 		int length = is.readInt();
 		String f = "";
 		for (int i = 0; i < length; i++)
2127
@@ -916,7 +1064,11 @@
2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139
 		}
 		
 		viewer.ftp.refreshRemoteLocation();	
-		viewer.ftp.historyComboBox.insertItemAt(new String(" > Deleted File On Remote Machine: " + f.substring(0, f.length()-1)),0);
+		if (ret == -1) {
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > ERROR Could not Delete File On Remote Machine: "),0);
+		} else {
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > Deleted File On Remote Machine: " + f.substring(0, f.length()-1)),0);
+		}
 		viewer.ftp.historyComboBox.setSelectedIndex(0);
 	}
 
2140
@@ -926,12 +1078,7 @@
2141
 		try
2142 2143
 		{
 			String temp = text;
2144
-			writeRfbFileTransferMsg(
2145 2146 2147 2148 2149
-									rfbCommand,
-									rfbCFileDelete,
-									0,
-									temp.length(),
-									temp);
2150
+			writeRfbFileTransferMsg(rfbCommand, rfbCFileDelete, 0, temp.length(), temp);
2151 2152 2153
 		}
 		catch (IOException e)
 		{
2154
@@ -943,7 +1090,7 @@
2155 2156 2157 2158 2159 2160 2161 2162
 	// Handles acknowledgement that the directory has been created on the server
 	void createRemoteDirectoryFeedback() throws IOException
 	{
-		is.readInt();
+		int ret = is.readInt();
 		int length = is.readInt();
 		String f="";
 		for (int i = 0; i < length; i++)
2163
@@ -951,7 +1098,11 @@
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175
 			f += (char)is.readUnsignedByte();
 		}
 		viewer.ftp.refreshRemoteLocation();	
-		viewer.ftp.historyComboBox.insertItemAt(new String(" > Created Directory on Remote Machine: " + f.substring(0, f.length()-1)),0);
+		if (ret == -1) {
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > ERROR Could not Create Directory on Remote Machine."),0);
+		} else {
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > Created Directory on Remote Machine: " + f.substring(0, f.length()-1)),0);
+		}
 		viewer.ftp.historyComboBox.setSelectedIndex(0);
 	}
 
2176
@@ -961,12 +1112,7 @@
2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189
 		try
 		{
 			String temp = text;
-			writeRfbFileTransferMsg(
-				rfbCommand,
-				rfbCDirCreate,
-				0,
-				temp.length(),
-				temp);
+			writeRfbFileTransferMsg(rfbCommand, rfbCDirCreate, 0, temp.length(), temp);
 		}
 		catch (IOException e)
 		{
2190
@@ -979,15 +1125,13 @@
2191 2192 2193 2194 2195 2196 2197 2198
 	{
 		try
 		{
+//System.out.println("requestRemoteFile text: " + text);
+//System.out.println("requestRemoteFile leng: " + text.length());
 			String temp = text;
 			receivePath = localPath;
 					
2199
-			writeRfbFileTransferMsg(
2200 2201 2202 2203 2204
-									rfbFileTransferRequest,
-									0,
-									1, // 0 : compression not supported - 1 : compression supported
-									temp.length(),
-									temp);
2205 2206
+			// 0 : compression not supported - 1 : compression supported
+			writeRfbFileTransferMsg(rfbFileTransferRequest, 0, 1, temp.length(), temp);
2207 2208 2209
 		}
 		catch (IOException e)
 		{
2210
@@ -1004,6 +1148,9 @@
2211 2212 2213 2214
 		viewer.ftp.disableButtons();
 		int size = is.readInt();
 		int length = is.readInt();
+
2215 2216
+//System.out.println("receiveFileHeader size: " + size);
+//System.out.println("receiveFileHeader leng: " + length);
2217 2218 2219
 		
 		String tempName = "";
 		for (int i = 0; i < length; i++)
2220
@@ -1011,6 +1158,15 @@
2221 2222 2223 2224 2225 2226 2227
 			tempName += (char) is.readUnsignedByte();
 		}
 
+		if (size == rfbRErrorCmd || size == -1) {
+			fFileReceptionRunning = false;
+			viewer.ftp.enableButtons();
+			viewer.ftp.connectionStatus.setText("Remote file not available for reading.");
2228 2229
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > Error - Remote file not available for reading."), 0);
+			viewer.ftp.historyComboBox.setSelectedIndex(0);
2230 2231 2232 2233 2234 2235
+			return;
+		}
+
 		// sf@2004 - Read the high part of file size (not yet in rfbFileTransferMsg for 
 		// backward compatibility reasons...)
 		int sizeH = is.readInt();
2236
@@ -1021,7 +1177,16 @@
2237 2238 2239 2240 2241 2242 2243 2244 2245 2246
 		fileSize=0;
 		fileChunkCounter = 0;
 		String fileName = receivePath;
-		fos = new FileOutputStream(fileName);
+		try {
+			fos = new FileOutputStream(fileName);
+		} catch (Exception e) {
+			fFileReceptionRunning = false;
+			writeRfbFileTransferMsg(rfbAbortFileTransfer, 0, 0, 0, null);
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > ERROR opening Local File: <" + fileName ),0);
2247
+			viewer.ftp.historyComboBox.setSelectedIndex(0);
2248 2249 2250 2251 2252 2253
+			viewer.ftp.enableButtons();
+			return;
+		}
 		writeRfbFileTransferMsg(rfbFileHeader, 0, 0, 0, null);
 	}
 
2254
@@ -1085,7 +1250,13 @@
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268
 			fAbort = false;
 			fFileReceptionError = true;
 			writeRfbFileTransferMsg(rfbAbortFileTransfer, 0, 0, 0, null);
-			
+
+			//runge for use with x11vnc/libvncserver, no rfbAbortFileTransfer reply sent.
+		        try {Thread.sleep(500);} catch (InterruptedException e) {}
+			viewer.ftp.enableButtons();
+			viewer.ftp.refreshLocalLocation();
+			viewer.ftp.connectionStatus.setText(" > Error - File NOT received");
+			viewer.ftp.historyComboBox.insertItemAt(new String(" > Error - File: <" + receivePath + "> not correctly received from Remote Machine (aborted by user or error)") ,0);
 		}
 		// sf@2004 - For old FT protocole only
 		/*
2269
@@ -1104,7 +1275,7 @@
2270 2271 2272 2273 2274 2275 2276 2277
 		int length = is.readInt();
 		fileSize=0;
 		fos.close();
-		
+
 		viewer.ftp.refreshLocalLocation();
 		if (fReceptionOk && !fFileReceptionError)
 		{
2278
@@ -1132,12 +1303,7 @@
2279
 		try
2280 2281
 		{
 			String temp = text;
2282
-			writeRfbFileTransferMsg(
2283 2284 2285 2286 2287
-									rfbDirContentRequest,
-									rfbRDirContent,
-									0,
-									temp.length(),
-									temp);
2288
+			writeRfbFileTransferMsg(rfbDirContentRequest, rfbRDirContent, 0, temp.length(), temp);
2289 2290 2291
 		}
 		catch (IOException e)
 		{
2292
@@ -1197,11 +1363,80 @@
2293 2294 2295 2296 2297 2298 2299
 					str += temp;
 				}
 			}
+			// runge
+			viewer.ftp.receivedRemoteDirectoryName(str);
 			// viewer.ftp.changeRemoteDirectory(str);
 			
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311
 		}
 	}
 
+	int zogswap(int n) {
+		long l = n;
+		if (l < 0) {
+			l += 0x100000000L;
+		}
+		l = l & 0xFFFFFFFF;
+		l = (l >> 24) | ((l & 0x00ff0000) >> 8) | ((l & 0x0000ff00) << 8) | (l << 24);
+		return (int) l;
+	}
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
+
+	int windozeToUnix(int L, int H) {
+		long L2 = zogswap(L);
+		long H2 = zogswap(H);
+		long unix = (H2 << 32) + L2;
+		unix -= 11644473600L * 10000000L;
+		unix /= 10000000L;
+		//System.out.println("unix time: " + unix + " H2: " + H2 + " L2: " + L2);
+		return (int) unix;
+	}
2322
+	
2323 2324 2325 2326 2327 2328 2329 2330
+	String timeStr(int t, int h) {
+		if (h == 0) {
+			// x11vnc/libvncserver unix
+			t = zogswap(t);
+		} else {
+			// ultra (except if h==0 by chance)
+			t = windozeToUnix(t, h);
+		}
2331 2332
+		long tl = (long) t;
+		Date date = new Date(tl * 1000);
2333 2334 2335 2336 2337
+		if (true) {
+			return date.toString();
+		} else {
+			return DateFormat.getDateTimeInstance().format(date);
+		}
2338
+	}
2339
+
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
+	String dotPast(double f, int n) {
+		String fs = "" + f;
+		int i = fs.lastIndexOf(".") + n;
+		if (i >= 0) {
+			int len = fs.length();
+			if (i >= len) {
+				i = len-1;
+			}
+			fs = fs.substring(0, i);
+		}
+		return fs;
+	}
+	String sizeStr(int s) {
+		s = zogswap(s);
+		if (s < 0) {
+			return s + "? B";
+		} else if (s < 1024) {
+			return s + " B";
+		} else if (s < 1024 * 1024) {
+			double k = s / 1024.0;
+			String ks = dotPast(k, 3);
+			
+			return s + " (" + ks + " KB)";
+		} else {
+			double m = s / (1024.0*1024.0);
+			String ms = dotPast(m, 3);
+			return s + " (" + ms + " MB)";
+		}
+	}
+
 	//Internally used to receive directory content from server
 	//Here, the server sends one file/directory with it's attributes
 	void readFTPMsgDirectoryListContent() throws IOException
2373
@@ -1217,17 +1452,32 @@
2374 2375 2376 2377 2378 2379 2380 2381 2382
 			dwReserved0,
 			dwReserved1;
 		long ftCreationTime, ftLastAccessTime, ftLastWriteTime;
+		int ftCreationTimeL, ftLastAccessTimeL, ftLastWriteTimeL;
+		int ftCreationTimeH, ftLastAccessTimeH, ftLastWriteTimeH;
 		char cFileName, cAlternateFileName;
 		int length = 0;
 		is.readInt();
 		length = is.readInt();
2383 2384 2385 2386 2387 2388 2389
+
+		char[] chars = new char[4*length];
+		int char_cnt = 0;
+		for (int i = 0; i < chars.length; i++) {
+			chars[i] = '\0';
+		}
+		
2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
 		dwFileAttributes = is.readInt();
 		length -= 4;
-		ftCreationTime = is.readLong();
+		//ftCreationTime = is.readLong();
+		ftCreationTimeL = is.readInt();
+		ftCreationTimeH = is.readInt();
 		length -= 8;
-		ftLastAccessTime = is.readLong();
+		//ftLastAccessTime = is.readLong();
+		ftLastAccessTimeL = is.readInt();
+		ftLastAccessTimeH = is.readInt();
 		length -= 8;
-		ftLastWriteTime = is.readLong();
+		//ftLastWriteTime = is.readLong();
+		ftLastWriteTimeL = is.readInt();
+		ftLastWriteTimeH = is.readInt();
 		length -= 8;
 		nFileSizeHigh = is.readInt();
 		length -= 4;
2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
@@ -1239,10 +1489,12 @@
 		length -= 4;
 		cFileName = (char) is.readUnsignedByte();
 		length--;
+		chars[char_cnt++] = cFileName;
 		while (cFileName != '\0')
 		{
 			fileName += cFileName;
 			cFileName = (char) is.readUnsignedByte();
+			chars[char_cnt++] = cFileName;
 			length--;
 		}
 		cAlternateFileName = (char) is.readByte();
@@ -1253,7 +1505,28 @@
2423 2424 2425 2426
 			cAlternateFileName = (char) is.readUnsignedByte();
 			length--;
 		}
-		if (dwFileAttributes == 268435456
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
+		String guessed = guess_encoding(chars);
+		if (!guessed.equals("ASCII")) {
+			System.out.println("guess: " + guessed + "\t" + fileName);
+		}
+		if (guessed.equals("UTF-8")) {
+			try {
+				byte[] bytes = new byte[char_cnt-1];
+				for (int i=0; i < char_cnt-1; i++) {
+					bytes[i] = (byte) chars[i];
+				}
+				String newstr = new String(bytes, "UTF-8");
+				fileName = newstr;
+			} catch (Exception e) {
+				System.out.println("failed to convert bytes to UTF-8 based string");
+			}
+		}
+		for (int i = 0; i < char_cnt; i++) {
+			//System.out.println("char[" + i + "]\t" + (int) chars[i]);
+		}
2446 2447 2448 2449 2450 2451
+		if (fileName.length() <= 0) {
+			;
+		} else if (dwFileAttributes == 268435456
 			|| dwFileAttributes == 369098752
 			|| dwFileAttributes == 285212672 
 			|| dwFileAttributes == 271056896
2452
@@ -1263,11 +1536,74 @@
2453 2454 2455 2456
 			|| dwFileAttributes == 369623040)
 		{
 			fileName = " [" + fileName + "]";
-			remoteDirsList.add(fileName); // sf@2004
2457 2458 2459 2460
-		}
-		else
-		{
-			remoteFilesList.add(" " + fileName); // sf@2004
2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472
+// begin runge/x11vnc
+//			remoteDirsList.add(fileName); // sf@2004
+			int i = -1;
+			String t1 = fileName.toLowerCase();
+			for (int j = 0; j < remoteDirsList.size(); j++) {
+				String t = (String) remoteDirsList.get(j);
+				String t2 = t.toLowerCase();
+				if (t1.compareTo(t2) < 0) {
+					i = j;
+					break;
+				}
+			}
2473
+			//String s = "Lastmod: " + timeStr(ftLastWriteTimeL, ftLastWriteTimeH) + "    " + fileName; 
2474 2475 2476 2477 2478 2479
+			String f2 = fileName;
+			if (f2.length() < 24) {
+				for (int ik = f2.length(); ik < 24; ik++) {
+					f2 = f2 + " ";
+				}
+			}
2480
+			String s = f2 + "    \tLastmod: " + timeStr(ftLastWriteTimeL, ftLastWriteTimeH) + "    \t\tSize: " + sizeStr(nFileSizeLow); 
2481
+			//s = fileName + " Lastmod: " + zogswap(ftLastWriteTimeL); 
2482 2483
+			if (i >= 0) {
+				remoteDirsList.add(i, fileName);
2484
+				remoteDirsListInfo.add(i, s);
2485 2486
+			} else {
+				remoteDirsList.add(fileName);
2487
+				remoteDirsListInfo.add(s);
2488 2489
+			}
+// end runge/x11vnc
2490
+		} else {
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
+// begin runge/x11vnc
+//			remoteFilesList.add(" " + fileName); // sf@2004
+	
+			fileName = " " + fileName;
+			int i = -1;
+			String t1 = fileName.toLowerCase();
+			for (int j = 0; j < remoteFilesList.size(); j++) {
+				String t = (String) remoteFilesList.get(j);
+				String t2 = t.toLowerCase();
+				if (t1.compareTo(t2) < 0) {
+					i = j;
+					break;
+				}
+			}
2505 2506 2507 2508 2509 2510
+			String f2 = fileName;
+			if (f2.length() < 24) {
+				for (int ik = f2.length(); ik < 24; ik++) {
+					f2 = f2 + " ";
+				}
+			}
2511 2512 2513 2514 2515 2516 2517 2518 2519
+
+if (false) {
+System.out.println("fileName:         " + f2);
+System.out.println("ftLastWriteTimeL: " + ftLastWriteTimeL);
+System.out.println("ftLastWriteTimeH: " + ftLastWriteTimeH);
+System.out.println("nFileSizeLow:     " + nFileSizeLow);
+}
+
+			String s = f2 + "    \tLastmod: " + timeStr(ftLastWriteTimeL, ftLastWriteTimeH) + "    \t\tSize: " + sizeStr(nFileSizeLow); 
2520
+			//s = fileName + " Lastmod: " + ftLastWriteTimeL + "/" + zogswap(ftLastWriteTimeL) + "  Size: " + nFileSizeLow + "/" + zogswap(nFileSizeLow); 
2521 2522
+			if (i >= 0) {
+				remoteFilesList.add(i, fileName);
2523
+				remoteFilesListInfo.add(i, s);
2524 2525
+			} else {
+				remoteFilesList.add(fileName);
2526
+				remoteFilesListInfo.add(s);
2527 2528 2529 2530 2531
+			}
+// end runge/x11vnc
 		}
 	
 		// a.add(fileName);
2532
@@ -1282,14 +1618,32 @@
2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544
 
 		// sf@2004
 		a.clear();
-		for (int i = 0; i < remoteDirsList.size(); i++) 
+		b.clear();
+		for (int i = 0; i < remoteDirsList.size(); i++) {
 			a.add(remoteDirsList.get(i));
-		for (int i = 0; i < remoteFilesList.size(); i++) 
+			b.add(remoteDirsListInfo.get(i));
+		}
+		for (int i = 0; i < remoteFilesList.size(); i++) {
 			a.add(remoteFilesList.get(i));
2545
+
2546 2547
+			b.add(remoteFilesListInfo.get(i));
+		}
2548
 		remoteDirsList.clear();
2549
+		remoteDirsListInfo.clear();
2550
 		remoteFilesList.clear();
2551
+		remoteFilesListInfo.clear();
2552
 		
2553
-		viewer.ftp.printDirectory(a);
2554 2555 2556 2557
+// begin runge/x11vnc
+		// Hack for double listing at startup... probably libvncserver bug..
+		readServerDriveListCnt++;
+		if (readServerDriveListCnt == 2) {
2558 2559
+			if (System.currentTimeMillis() - readServerDriveListTime < 2000)  {
+//System.out.println("readServerDriveListCnt skip " + readServerDriveListCnt);
2560 2561 2562 2563
+				return;
+			}
+		}
+// end runge/x11vnc
2564 2565 2566 2567
+		viewer.ftp.printDirectory(a, b);
 	}
 
 	//Internally used to signify the drive requested is not ready
2568
@@ -1299,6 +1653,8 @@
2569 2570 2571 2572 2573
 		System.out.println("Remote Drive unavailable");
 		viewer.ftp.connectionStatus.setText(" > WARNING - Remote Drive unavailable (possibly restricted access or media not present)");
 		viewer.ftp.remoteStatus.setText("WARNING: Remote Drive unavailable");
+		viewer.ftp.historyComboBox.insertItemAt(new String(" > WARNING: Remote Drive unavailable."), 0);
+		viewer.ftp.historyComboBox.setSelectedIndex(0);
2574 2575
 	}
 
2576
 	//Call this method to request the list of drives on the server.
2577
@@ -1306,12 +1662,11 @@
2578
 	{
2579 2580
 		try
 		{
2581
-			viewer.rfb.writeRfbFileTransferMsg(
2582 2583 2584 2585 2586
-												RfbProto.rfbDirContentRequest,
-												RfbProto.rfbRDrivesList,
-												0,
-												0,
-												null);
2587
+			viewer.rfb.writeRfbFileTransferMsg(RfbProto.rfbDirContentRequest, RfbProto.rfbRDrivesList, 0, 0, null);
2588 2589 2590 2591 2592 2593 2594
+// begin runge/x11vnc
+			readServerDriveListCnt = 0;
+			readServerDriveListTime = System.currentTimeMillis();
+// end   runge/x11vnc
 		}
 		catch (IOException e)
 		{
2595
@@ -1355,21 +1710,21 @@
2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629
 		int h,
 		boolean incremental)
 		throws IOException {
-			if (!viewer.ftp.isVisible()) {
-		byte[] b = new byte[10];
+		if (!viewer.ftp.isVisible()) {
+			byte[] b = new byte[10];
 
-		b[0] = (byte) FramebufferUpdateRequest;
-		b[1] = (byte) (incremental ? 1 : 0);
-		b[2] = (byte) ((x >> 8) & 0xff);
-		b[3] = (byte) (x & 0xff);
-		b[4] = (byte) ((y >> 8) & 0xff);
-		b[5] = (byte) (y & 0xff);
-		b[6] = (byte) ((w >> 8) & 0xff);
-		b[7] = (byte) (w & 0xff);
-		b[8] = (byte) ((h >> 8) & 0xff);
-		b[9] = (byte) (h & 0xff);
+			b[0] = (byte) FramebufferUpdateRequest;
+			b[1] = (byte) (incremental ? 1 : 0);
+			b[2] = (byte) ((x >> 8) & 0xff);
+			b[3] = (byte) (x & 0xff);
+			b[4] = (byte) ((y >> 8) & 0xff);
+			b[5] = (byte) (y & 0xff);
+			b[6] = (byte) ((w >> 8) & 0xff);
+			b[7] = (byte) (w & 0xff);
+			b[8] = (byte) ((h >> 8) & 0xff);
+			b[9] = (byte) (h & 0xff);
 
-		os.write(b);
+			os.write(b);
 		}
 	}
 
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644
@@ -1482,7 +1837,13 @@
 		b[6] = (byte) ((text.length() >> 8) & 0xff);
 		b[7] = (byte) (text.length() & 0xff);
 
-		System.arraycopy(text.getBytes(), 0, b, 8, text.length());
+		if (false && max_char(text) > 255) {
+			System.arraycopy(text.getBytes("UTF-8"), 0, b, 8, text.length());
+		} else if (max_char(text) > 127) {
+			System.arraycopy(text.getBytes("ISO-8859-1"), 0, b, 8, text.length());
+		} else {
+			System.arraycopy(text.getBytes(), 0, b, 8, text.length());
+		}
 
 		os.write(b);
 	//	}
2645 2646
diff -Naur JavaViewer.orig/SSLSocketToMe.java JavaViewer/SSLSocketToMe.java
--- JavaViewer.orig/SSLSocketToMe.java	1969-12-31 19:00:00.000000000 -0500
2647 2648
+++ JavaViewer/SSLSocketToMe.java	2009-08-13 09:16:42.000000000 -0400
@@ -0,0 +1,1727 @@
2649 2650 2651 2652 2653 2654 2655 2656
+/*
+ * SSLSocketToMe.java: add SSL encryption to Java VNC Viewer.
+ *
+ * Copyright (c) 2006 Karl J. Runge <runge@karlrunge.com>
+ * All rights reserved.
+ *
+ *  This is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
2657 2658
+ *  the Free Software Foundation; version 2 of the License, or
+ *  (at your option) any later version.
2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704
+ *
+ *  This software is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this software; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ *  USA.
+ *
+ */
+
+import java.net.*;
+import java.io.*;
+import javax.net.ssl.*;
+import java.util.*;
+
+import java.security.*;
+import java.security.cert.*;
+import java.security.spec.*;
+import java.security.cert.Certificate;
+import java.security.cert.CertificateFactory;
+
+import java.awt.*;
+import java.awt.event.*;
+
+public class SSLSocketToMe {
+
+	/* basic member data: */
+	String host;
+	int port;
+	VncViewer viewer;
+	boolean debug = true;
+
+	/* sockets */
+	SSLSocket socket = null;
+	SSLSocketFactory factory;
+
+	/* fallback for Proxy connection */
+	boolean proxy_in_use = false;
+	boolean proxy_is_https = false;
+	boolean proxy_failure = false;
+	public DataInputStream is = null;
+	public OutputStream os = null;
+
2705
+	String proxy_auth_string = null;
2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
+	String proxy_dialog_host = null;
+	int proxy_dialog_port = 0;
+
+	Socket proxySock;
+	DataInputStream proxy_is;
+	OutputStream proxy_os;
+
+	/* trust contexts */
+	SSLContext trustloc_ctx;
+	SSLContext trustall_ctx;
+	SSLContext trusturl_ctx;
+	SSLContext trustone_ctx;
+
+	TrustManager[] trustAllCerts;
+	TrustManager[] trustUrlCert;
+	TrustManager[] trustOneCert;
+
+	boolean use_url_cert_for_auth = true;
+	boolean user_wants_to_see_cert = true;
+
+	/* cert(s) we retrieve from VNC server */
+	java.security.cert.Certificate[] trustallCerts = null;
+	java.security.cert.Certificate[] trusturlCerts = null;
+
+	byte[] hex2bytes(String s) {
+		byte[] bytes = new byte[s.length()/2];
+		for (int i=0; i<s.length()/2; i++) {
+			int j = 2*i;
+			try {
+				int val = Integer.parseInt(s.substring(j, j+2), 16);
+				if (val > 127) {
+					val -= 256;
+				}
+				Integer I = new Integer(val);
+				bytes[i] = Byte.decode(I.toString()).byteValue();
+				
+			} catch (Exception e) {
+				;
+			}
+		}
+		return bytes;
+	}
+
+	SSLSocketToMe(String h, int p, VncViewer v) throws Exception {
+		host = h;
+		port = p;
+		viewer = v;
+
+		/* we will first try default factory for certification: */
+
+		factory = (SSLSocketFactory) SSLSocketFactory.getDefault();
+
+		dbg("SSL startup: " + host + " " + port);
+
+		/* create trust managers used if initial handshake fails: */
+
+		trustAllCerts = new TrustManager[] {
+		    /*
+		     * this one accepts everything.
+		     */
+		    new X509TrustManager() {
+			public java.security.cert.X509Certificate[]
+			    getAcceptedIssuers() {
+				return null;
+			}
+			public void checkClientTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) {
+				/* empty */
+			}
+			public void checkServerTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) {
+				/* empty */
+				dbg("ALL: an untrusted connect to grab cert.");
+			}
+		    }
+		};
+
+		trustUrlCert = new TrustManager[] {
+		    /*
+		     * this one accepts only the retrieved server cert
+		     * by SSLSocket by this applet.
+		     */
+		    new X509TrustManager() {
+			public java.security.cert.X509Certificate[]
+			    getAcceptedIssuers() {
+				return null;
+			}
+			public void checkClientTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) throws CertificateException {
+				throw new CertificateException("No Clients");
+			}
+			public void checkServerTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) throws CertificateException {
+				if (trusturlCerts == null) {
+					throw new CertificateException(
+					    "No Trust url Certs array.");
+				}
+				if (trusturlCerts.length < 1) {
+					throw new CertificateException(
+					    "No Trust url Certs.");
+				}
+				if (trusturlCerts.length > 1) {
+					int i;
+					boolean ok = true;
+					for (i = 0; i < trusturlCerts.length - 1; i++)  {
+						if (! trusturlCerts[i].equals(trusturlCerts[i+1])) {
+							ok = false;
+						}
+					}
+					if (! ok) {
+						throw new CertificateException(
+						    "Too many Trust url Certs: "
+						    + trusturlCerts.length
+						);
+					}
+				}
+				if (certs == null) {
+					throw new CertificateException(
+					    "No this-certs array.");
+				}
+				if (certs.length < 1) {
+					throw new CertificateException(
+					    "No this-certs Certs.");
+				}
+				if (certs.length > 1) {
+					int i;
+					boolean ok = true;
+					for (i = 0; i < certs.length - 1; i++)  {
+						if (! certs[i].equals(certs[i+1])) {
+							ok = false;
+						}
+					}
+					if (! ok) {
+						throw new CertificateException(
+						    "Too many this-certs: "
+						    + certs.length
+						);
+					}
+				}
+				if (! trusturlCerts[0].equals(certs[0])) {
+					throw new CertificateException(
+					    "Server Cert Changed != URL.");
+				}
+				dbg("URL: trusturlCerts[0] matches certs[0]");
+			}
+		    }
+		};
+		trustOneCert = new TrustManager[] {
+		    /*
+		     * this one accepts only the retrieved server cert
+		     * by SSLSocket by this applet.
+		     */
+		    new X509TrustManager() {
+			public java.security.cert.X509Certificate[]
+			    getAcceptedIssuers() {
+				return null;
+			}
+			public void checkClientTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) throws CertificateException {
+				throw new CertificateException("No Clients");
+			}
+			public void checkServerTrusted(
+			    java.security.cert.X509Certificate[] certs,
+			    String authType) throws CertificateException {
+				if (trustallCerts == null) {
+					throw new CertificateException(
+					    "No Trust All Server Certs array.");
+				}
+				if (trustallCerts.length < 1) {
+					throw new CertificateException(
+					    "No Trust All Server Certs.");
+				}
+				if (trustallCerts.length > 1) {
+					int i;
+					boolean ok = true;
+					for (i = 0; i < trustallCerts.length - 1; i++)  {
+						if (! trustallCerts[i].equals(trustallCerts[i+1])) {
+							ok = false;
+						}
+					}
+					if (! ok) {
+						throw new CertificateException(
+						    "Too many Trust All Server Certs: "
+						    + trustallCerts.length
+						);
+					}
+				}
+				if (certs == null) {
+					throw new CertificateException(
+					    "No this-certs array.");
+				}
+				if (certs.length < 1) {
+					throw new CertificateException(
+					    "No this-certs Certs.");
+				}
+				if (certs.length > 1) {
+					int i;
+					boolean ok = true;
+					for (i = 0; i < certs.length - 1; i++)  {
+						if (! certs[i].equals(certs[i+1])) {
+							ok = false;
+						}
+					}
+					if (! ok) {
+						throw new CertificateException(
+						    "Too many this-certs: "
+						    + certs.length
+						);
+					}
+				}
+				if (! trustallCerts[0].equals(certs[0])) {
+					throw new CertificateException(
+					    "Server Cert Changed != TRUSTALL.");
+				}
+				dbg("ONE: trustallCerts[0] matches certs[0]");
+			}
+		    }
+		};
+
+		/* 
+		 * They are used:
+		 *
+		 * 1) to retrieve the server cert in case of failure to
+		 *    display it to the user.
+		 * 2) to subsequently connect to the server if user agrees.
+		 */
+
+		KeyManager[] mykey = null;
+
+		if (viewer.oneTimeKey != null && viewer.oneTimeKey.equals("PROMPT")) {
+			ClientCertDialog d = new ClientCertDialog();
+			viewer.oneTimeKey = d.queryUser();
+		}
+
+		if (viewer.oneTimeKey != null && viewer.oneTimeKey.indexOf(",") > 0) {
+			int idx = viewer.oneTimeKey.indexOf(",");
+
+			String onetimekey = viewer.oneTimeKey.substring(0, idx);
+			byte[] key = hex2bytes(onetimekey);
+			String onetimecert = viewer.oneTimeKey.substring(idx+1);
+			byte[] cert = hex2bytes(onetimecert);
+
+			KeyFactory kf = KeyFactory.getInstance("RSA");
+			PKCS8EncodedKeySpec keysp = new PKCS8EncodedKeySpec ( key );
+			PrivateKey ff = kf.generatePrivate (keysp);
+			//dbg("ff " + ff);
+			String cert_str = new String(cert);
+
+			CertificateFactory cf = CertificateFactory.getInstance("X.509");
+			Collection c = cf.generateCertificates(new ByteArrayInputStream(cert));
+			Certificate[] certs = new Certificate[c.toArray().length];
+			if (c.size() == 1) {
+				Certificate tmpcert = cf.generateCertificate(new ByteArrayInputStream(cert));
+				//dbg("tmpcert" + tmpcert);
+				certs[0] = tmpcert;
+			} else {
+				certs = (Certificate[]) c.toArray();
+			}
+
+			KeyStore ks = KeyStore.getInstance("JKS");
+			ks.load(null, null);
+			ks.setKeyEntry("onetimekey", ff, "".toCharArray(), certs);
+			String da = KeyManagerFactory.getDefaultAlgorithm();
+			KeyManagerFactory kmf = KeyManagerFactory.getInstance(da);
+			kmf.init(ks, "".toCharArray());
+
+			mykey = kmf.getKeyManagers();
+		}
+
+
+		/* trust loc certs: */
+		try {
+			trustloc_ctx = SSLContext.getInstance("SSL");
+			trustloc_ctx.init(mykey, null, new
+			    java.security.SecureRandom());
+
+		} catch (Exception e) {
+			String msg = "SSL trustloc_ctx FAILED.";
+			dbg(msg);
+			throw new Exception(msg);
+		}
+
+		/* trust all certs: */
+		try {
+			trustall_ctx = SSLContext.getInstance("SSL");
+			trustall_ctx.init(mykey, trustAllCerts, new
+			    java.security.SecureRandom());
+
+		} catch (Exception e) {
+			String msg = "SSL trustall_ctx FAILED.";
+			dbg(msg);
+			throw new Exception(msg);
+		}
+
+		/* trust url certs: */
+		try {
+			trusturl_ctx = SSLContext.getInstance("SSL");
+			trusturl_ctx.init(mykey, trustUrlCert, new
+			    java.security.SecureRandom());
+
+		} catch (Exception e) {
+			String msg = "SSL trusturl_ctx FAILED.";
+			dbg(msg);
+			throw new Exception(msg);
+		}
+
+		/* trust the one cert from server: */
+		try {
+			trustone_ctx = SSLContext.getInstance("SSL");
+			trustone_ctx.init(mykey, trustOneCert, new
+			    java.security.SecureRandom());
+
+		} catch (Exception e) {
+			String msg = "SSL trustone_ctx FAILED.";
+			dbg(msg);
+			throw new Exception(msg);
+		}
+	}
+
+	boolean browser_cert_match() {
+		String msg = "Browser URL accept previously accepted cert";
+
+		if (user_wants_to_see_cert) {
+			return false;
+		}
+
+		if (trustallCerts != null && trusturlCerts != null) {
+		    if (trustallCerts.length == 1 && trusturlCerts.length == 1) {
+			if (trustallCerts[0].equals(trusturlCerts[0])) {
+				System.out.println(msg);
+				return true;
+			}
+		    }
+		}
+		return false;
+	}
+
+	public void check_for_proxy() {
+		
+		boolean result = false;
+
+		trusturlCerts = null;
+		proxy_in_use = false;
+		if (viewer.ignoreProxy) {
+			return;
+		}
+
+		String ustr = "https://" + host + ":";
+		if (viewer.httpsPort != null) {
+			ustr += viewer.httpsPort;
+		} else {
+			ustr += port;	// hmmm
+		}
+		ustr += viewer.urlPrefix + "/check.https.proxy.connection";
+		dbg("ustr is: " + ustr);
+
+
+		try {
+			URL url = new URL(ustr);
+			HttpsURLConnection https = (HttpsURLConnection)
+			    url.openConnection();
+
+			https.setUseCaches(false);
+			https.setRequestMethod("GET");
+			https.setRequestProperty("Pragma", "No-Cache");
+			https.setRequestProperty("Proxy-Connection",
+			    "Keep-Alive");
+			https.setDoInput(true);
+
+			https.connect();
+
+			trusturlCerts = https.getServerCertificates();
+			if (trusturlCerts == null) {
+				dbg("set trusturlCerts to null...");
+			} else {
+				dbg("set trusturlCerts to non-null");
+			}
+
+			if (https.usingProxy()) {
+				proxy_in_use = true;
+				proxy_is_https = true;
+				dbg("HTTPS proxy in use. There may be connection problems.");
+			}
+			Object output = https.getContent();
+			https.disconnect();
+			result = true;
+
+		} catch(Exception e) {
+			dbg("HttpsURLConnection: " + e.getMessage());
+		}
+
+		if (proxy_in_use) {
+			return;
+		}
+
+		ustr = "http://" + host + ":" + port;
+		ustr += viewer.urlPrefix + "/index.vnc";
+
+		try {
+			URL url = new URL(ustr);
+			HttpURLConnection http = (HttpURLConnection)
+			    url.openConnection();
+
+			http.setUseCaches(false);
+			http.setRequestMethod("GET");
+			http.setRequestProperty("Pragma", "No-Cache");
+			http.setRequestProperty("Proxy-Connection",
+			    "Keep-Alive");
+			http.setDoInput(true);
+
+			http.connect();
+
+			if (http.usingProxy()) {
+				proxy_in_use = true;
+				proxy_is_https = false;
+				dbg("HTTP proxy in use. There may be connection problems.");
+			}
+			Object output = http.getContent();
+			http.disconnect();
+
+		} catch(Exception e) {
+			dbg("HttpURLConnection: " + e.getMessage());
+		}
+	}
+
+	public Socket connectSock() throws IOException {
+
+		/*
+		 * first try a https connection to detect a proxy, and
+		 * also grab the VNC server cert.
+		 */
+		check_for_proxy();
+		
+		if (viewer.trustAllVncCerts) {
+			dbg("viewer.trustAllVncCerts-0 using trustall_ctx");
+			factory = trustall_ctx.getSocketFactory();
+		} else if (use_url_cert_for_auth && trusturlCerts != null) {
+			dbg("using trusturl_ctx");
+			factory = trusturl_ctx.getSocketFactory();
+		} else {
+			dbg("using trustloc_ctx");
+			factory = trustloc_ctx.getSocketFactory();
+		}
+
+		socket = null;
+		try {
+			if (proxy_in_use && viewer.forceProxy) {
+				throw new Exception("forcing proxy (forceProxy)");
+			} else if (viewer.CONNECT != null) {
+				throw new Exception("forcing CONNECT");
+			}
+
3163
+			int timeout = 6;
3164 3165 3166 3167 3168 3169 3170 3171
+			if (timeout > 0) {
+				socket = (SSLSocket) factory.createSocket();
+				InetSocketAddress inetaddr = new InetSocketAddress(host, port);
+				dbg("Using timeout of " + timeout + " secs to: " + host + ":" + port);
+				socket.connect(inetaddr, timeout * 1000);
+			} else {
+				socket = (SSLSocket) factory.createSocket(host, port);
+			}
3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223
+
+		} catch (Exception esock) {
+			dbg("esock: " + esock.getMessage());
+			if (proxy_in_use || viewer.CONNECT != null) {
+				proxy_failure = true;
+				if (proxy_in_use) {
+					dbg("HTTPS proxy in use. Trying to go with it.");
+				} else {
+					dbg("viewer.CONNECT reverse proxy in use. Trying to go with it.");
+				}
+				try {
+					socket = proxy_socket(factory);
+				} catch (Exception e) {
+					dbg("err proxy_socket: " + e.getMessage());
+				}
+			}
+		}
+
+		try {
+			socket.startHandshake();
+			dbg("Server Connection Verified on 1st try.");
+
+			java.security.cert.Certificate[] currentTrustedCerts;
+			BrowserCertsDialog bcd;
+
+			SSLSession sess = socket.getSession();
+			currentTrustedCerts = sess.getPeerCertificates();
+
+			if (viewer.trustAllVncCerts) {
+				dbg("viewer.trustAllVncCerts-1");
+			} else if (currentTrustedCerts == null || currentTrustedCerts.length < 1) {
+				socket.close();
+				socket = null;
+				throw new SSLHandshakeException("no current certs");
+			}
+
+			String serv = "";
+			try {
+				CertInfo ci = new CertInfo(currentTrustedCerts[0]);
+				serv = ci.get_certinfo("CN");
+			} catch (Exception e) {
+				;
+			}
+
+			if (viewer.trustAllVncCerts) {
+				dbg("viewer.trustAllVncCerts-2");
+				user_wants_to_see_cert = false;
+			} else if (viewer.trustUrlVncCert) {
+				dbg("viewer.trustUrlVncCert-1");
+				user_wants_to_see_cert = false;
+			} else {
+				bcd = new BrowserCertsDialog(serv, host + ":" + port);
3224
+				dbg("browser certs dialog START");
3225
+				bcd.queryUser();
3226
+				dbg("browser certs dialog DONE");
3227 3228 3229 3230 3231 3232 3233
+				if (bcd.showCertDialog) {
+					String msg = "user wants to see cert";
+					dbg(msg);
+					user_wants_to_see_cert = true;
+					throw new SSLHandshakeException(msg);
+				} else {
+					user_wants_to_see_cert = false;
3234
+					dbg("browser certs dialog: user said yes, accept it");
3235 3236 3237 3238 3239 3240
+				}
+			}
+
+		} catch (SSLHandshakeException eh)  {
+			dbg("Could not automatically verify Server.");
+			dbg("msg: " + eh.getMessage());
3241
+			String getoutstr = "GET /index.vnc HTTP/1.0\r\nConnection: close\r\n\r\n";
3242
+
3243 3244
+    			OutputStream os = socket.getOutputStream();
+			os.write(getoutstr.getBytes());
3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279
+			socket.close();
+			socket = null;
+
+			/*
+			 * Reconnect, trusting any cert, so we can grab
+			 * the cert to show it to the user.  The connection
+			 * is not used for anything else.
+			 */
+			factory = trustall_ctx.getSocketFactory();
+			if (proxy_failure) {
+				socket = proxy_socket(factory);
+			} else {
+				socket = (SSLSocket) factory.createSocket(host, port);
+			}
+
+			try {
+				socket.startHandshake();
+				dbg("TrustAll Server Connection Verified.");
+
+				/* grab the cert: */
+				try {
+					SSLSession sess = socket.getSession();
+					trustallCerts = sess.getPeerCertificates();
+				} catch (Exception e) {
+					throw new Exception("Could not get " + 
+					    "Peer Certificate");	
+				}
+
+				if (viewer.trustAllVncCerts) {
+					dbg("viewer.trustAllVncCerts-3");
+				} else if (! browser_cert_match()) {
+					/*
+					 * close socket now, we will reopen after
+					 * dialog if user agrees to use the cert.
+					 */
3280 3281
+    					os = socket.getOutputStream();
+					os.write(getoutstr.getBytes());
3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302
+					socket.close();
+					socket = null;
+
+					/* dialog with user to accept cert or not: */
+
+					TrustDialog td= new TrustDialog(host, port,
+					    trustallCerts);
+
+					if (! td.queryUser()) {
+						String msg = "User decided against it.";
+						dbg(msg);
+						throw new IOException(msg);
+					}
+				}
+
+			} catch (Exception ehand2)  {
+				dbg("** Could not TrustAll Verify Server.");
+
+				throw new IOException(ehand2.getMessage());
+			}
+
3303 3304 3305 3306 3307 3308 3309 3310 3311
+			if (socket != null) {
+				try {
+					socket.close();
+				} catch (Exception e) {
+					;
+				}
+				socket = null;
+			}
+
3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344
+			/*
+			 * Now connect a 3rd time, using the cert
+			 * retrieved during connection 2 (that the user
+			 * likely blindly agreed to).
+			 */
+
+			factory = trustone_ctx.getSocketFactory();
+			if (proxy_failure) {
+				socket = proxy_socket(factory);
+			} else {
+				socket = (SSLSocket) factory.createSocket(host, port);
+			}
+
+			try {
+				socket.startHandshake();
+				dbg("TrustAll Server Connection Verified #3.");
+
+			} catch (Exception ehand3)  {
+				dbg("** Could not TrustAll Verify Server #3.");
+
+				throw new IOException(ehand3.getMessage());
+			}
+		}
+
+		if (socket != null && viewer.GET) {
+			String str = "GET ";
+			str += viewer.urlPrefix;
+			str += "/request.https.vnc.connection";
+			str += " HTTP/1.0\r\n";
+			str += "Pragma: No-Cache\r\n";
+			str += "\r\n";
+			System.out.println("sending GET: " + str);
+    			OutputStream os = socket.getOutputStream();
3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360
+			String type = "os";
+			if (type == "os") {
+				os.write(str.getBytes());
+				os.flush();
+				System.out.println("used OutputStream");
+			} else if (type == "bs") {
+				BufferedOutputStream bs = new BufferedOutputStream(os);
+				bs.write(str.getBytes());
+				bs.flush();
+				System.out.println("used BufferedOutputStream");
+			} else if (type == "ds") {
+				DataOutputStream ds = new DataOutputStream(os);
+				ds.write(str.getBytes());
+				ds.flush();
+				System.out.println("used DataOutputStream");
+			}
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395
+			if (false) {
+				String rep = "";
+				DataInputStream is = new DataInputStream(
+				    new BufferedInputStream(socket.getInputStream(), 16384));
+				while (true) {
+					rep += readline(is);
+					if (rep.indexOf("\r\n\r\n") >= 0) {
+						break;
+					}
+				}
+				System.out.println("rep: " + rep);
+			}
+		}
+
+		dbg("SSL returning socket to caller.");
+		return (Socket) socket;
+	}
+
+	private void dbg(String s) {
+		if (debug) {
+			System.out.println(s);
+		}
+	}
+
+	private int gint(String s) {
+		int n = -1;
+		try {
+			Integer I = new Integer(s);
+			n = I.intValue();
+		} catch (Exception ex) {
+			return -1;
+		}
+		return n;
+	}
+
3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484
+	private void proxy_helper(String proxyHost, int proxyPort) {
+
+		boolean proxy_auth = false;
+		String proxy_auth_basic_realm = "";
+		String hp = host + ":" + port;
+		dbg("proxy_helper: " + proxyHost + ":" + proxyPort + " hp: " + hp);
+
+		for (int k=0; k < 2; k++) {
+			dbg("proxy_in_use psocket:");
+
+			if (proxySock != null) {
+				try {
+					proxySock.close();
+				} catch (Exception e) {
+					;
+				}
+			}
+
+			proxySock = psocket(proxyHost, proxyPort);
+			if (proxySock == null) {
+				dbg("1-a sadly, returning a null socket");
+				return;
+			}
+
+			String req1 = "CONNECT " + hp + " HTTP/1.1\r\n"
+			    + "Host: " + hp + "\r\n";
+
+			dbg("requesting: " + req1);
+
+			if (proxy_auth) {
+				if (proxy_auth_string == null) {
+					ProxyPasswdDialog pp = new ProxyPasswdDialog(proxyHost, proxyPort, proxy_auth_basic_realm);
+					pp.queryUser();
+					proxy_auth_string = pp.getAuth();
+				}
+				//dbg("auth1: " + proxy_auth_string);
+				String auth2 = Base64Coder.encodeString(proxy_auth_string);
+				//dbg("auth2: " + auth2);
+				req1 += "Proxy-Authorization: Basic " + auth2 + "\r\n";
+				//dbg("req1: " + req1);
+				dbg("added Proxy-Authorization: Basic ... to request");
+			}
+			req1 += "\r\n";
+
+			try {
+				proxy_os.write(req1.getBytes());
+				String reply = readline(proxy_is);
+
+				dbg("proxy replied: " + reply.trim());
+
+				if (reply.indexOf("HTTP/1.") == 0 && reply.indexOf(" 407 ") > 0) {
+					proxy_auth = true;
+					proxySock.close();
+				} else if (reply.indexOf("HTTP/1.") < 0 && reply.indexOf(" 200") < 0) {
+					proxySock.close();
+					proxySock = psocket(proxyHost, proxyPort);
+					if (proxySock == null) {
+						dbg("2-a sadly, returning a null socket");
+						return;
+					}
+				}
+			} catch(Exception e) {
+				dbg("sock prob: " + e.getMessage());
+			}
+
+			while (true) {
+				String line = readline(proxy_is);
+				dbg("proxy line: " + line.trim());
+				if (proxy_auth) {
+					String uc = line.toLowerCase();
+					if (uc.indexOf("proxy-authenticate:") == 0) {
+						if (uc.indexOf(" basic ") >= 0) {
+							int idx = uc.indexOf(" realm");
+							if (idx >= 0) {
+								proxy_auth_basic_realm = uc.substring(idx+1);
+							}
+						}
+					}
+				}
+				if (line.equals("\r\n") || line.equals("\n")) {
+					break;
+				}
+			}
+			if (!proxy_auth || proxy_auth_basic_realm.equals("")) {
+				break;
+			}
+		}
+	}
+
3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498
+	public SSLSocket proxy_socket(SSLSocketFactory factory) {
+		Properties props = null;
+		String proxyHost = null;
+		int proxyPort = 0;
+		String proxyHost_nossl = null;
+		int proxyPort_nossl = 0;
+		String str;
+
+		/* see if we can guess the proxy info from Properties: */
+		try {
+			props = System.getProperties();
+		} catch (Exception e) {
+			dbg("props failed: " + e.getMessage());
+		}
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508
+		if (viewer.proxyHost != null) {
+			dbg("Using supplied proxy " + viewer.proxyHost + " " + viewer.proxyPort + " applet parameters.");
+			proxyHost = viewer.proxyHost;
+			if (viewer.proxyPort != null) {
+				proxyPort = gint(viewer.proxyPort);
+			} else {
+				proxyPort = 8080;
+			}
+			
+		} else if (props != null) {
3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521
+			dbg("\n---------------\nAll props:");
+			props.list(System.out);
+			dbg("\n---------------\n\n");
+
+			for (Enumeration e = props.propertyNames(); e.hasMoreElements(); ) {
+				String s = (String) e.nextElement();
+				String v = System.getProperty(s);
+				String s2 = s.toLowerCase();
+				String v2 = v.toLowerCase();
+
+				if (s2.indexOf("proxy") < 0 && v2.indexOf("proxy") < 0) {
+					continue;
+				}
3522
+				if (v2.indexOf("http") < 0) {
3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547
+					continue;
+				}
+
+				if (s2.indexOf("proxy.https.host") >= 0) {
+					proxyHost = v2;
+					continue;
+				}
+				if (s2.indexOf("proxy.https.port") >= 0) {
+					proxyPort = gint(v2);
+					continue;
+				}
+				if (s2.indexOf("proxy.http.host") >= 0) {
+					proxyHost_nossl = v2;
+					continue;
+				}
+				if (s2.indexOf("proxy.http.port") >= 0) {
+					proxyPort_nossl = gint(v2);
+					continue;
+				}
+
+				String[] pieces = v.split("[,;]");
+				for (int i = 0; i < pieces.length; i++) {
+					String p = pieces[i];
+					int j = p.indexOf("https");
+					if (j < 0) {
3548 3549 3550 3551
+						j = p.indexOf("http");
+						if (j < 0) {
+							continue;
+						}
3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599
+					}
+					j = p.indexOf("=", j);
+					if (j < 0) {
+						continue;
+					}
+					p = p.substring(j+1);
+					String [] hp = p.split(":");
+					if (hp.length != 2) {
+						continue;
+					}
+					if (hp[0].length() > 1 && hp[1].length() > 1) {
+
+						proxyPort = gint(hp[1]);
+						if (proxyPort < 0) {
+							continue;
+						}
+						proxyHost = new String(hp[0]);
+						break;
+					}
+				}
+			}
+		}
+		if (proxyHost != null) {
+			if (proxyHost_nossl != null && proxyPort_nossl > 0) {
+				dbg("Using http proxy info instead of https.");
+				proxyHost = proxyHost_nossl;
+				proxyPort = proxyPort_nossl;
+			}
+		}
+
+		if (proxy_in_use) {
+			if (proxy_dialog_host != null && proxy_dialog_port > 0) {
+				proxyHost = proxy_dialog_host;
+				proxyPort = proxy_dialog_port;
+			}
+			if (proxyHost != null) {
+				dbg("Lucky us! we figured out the Proxy parameters: " + proxyHost + " " + proxyPort);
+			} else {
+				/* ask user to help us: */
+				ProxyDialog pd = new ProxyDialog(proxyHost, proxyPort);
+				pd.queryUser();
+				proxyHost = pd.getHost(); 
+				proxyPort = pd.getPort();
+				proxy_dialog_host = new String(proxyHost);
+				proxy_dialog_port = proxyPort;
+				dbg("User said host: " + pd.getHost() + " port: " + pd.getPort());
+			}
+
3600
+			proxy_helper(proxyHost, proxyPort);
3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857
+			if (proxySock == null) {
+				return null;
+			}
+		} else if (viewer.CONNECT != null) {
+			dbg("viewer.CONNECT psocket:");
+			proxySock = psocket(host, port);
+			if (proxySock == null) {
+				dbg("1-b sadly, returning a null socket");
+				return null;
+			}
+		}
+		
+		if (viewer.CONNECT != null) {
+			String hp = viewer.CONNECT;
+			String req2 = "CONNECT " + hp + " HTTP/1.1\r\n"
+			    + "Host: " + hp + "\r\n\r\n";
+
+			dbg("requesting2: " + req2);
+
+			try {
+				proxy_os.write(req2.getBytes());
+				String reply = readline(proxy_is);
+
+				dbg("proxy replied2: " + reply.trim());
+
+				if (reply.indexOf("HTTP/1.") < 0 && reply.indexOf(" 200") < 0) {
+					proxySock.close();
+					proxySock = psocket(proxyHost, proxyPort);
+					if (proxySock == null) {
+						dbg("2-b sadly, returning a null socket");
+						return null;
+					}
+				}
+			} catch(Exception e) {
+				dbg("sock prob2: " + e.getMessage());
+			}
+
+			while (true) {
+				String line = readline(proxy_is);
+				dbg("proxy line2: " + line.trim());
+				if (line.equals("\r\n") || line.equals("\n")) {
+					break;
+				}
+			}
+		}
+
+		Socket sslsock = null;
+		try {
+			sslsock = factory.createSocket(proxySock, host, port, true);
+		} catch(Exception e) {
+			dbg("sslsock prob: " + e.getMessage());
+			dbg("3 sadly, returning a null socket");
+		}
+
+		return (SSLSocket) sslsock;
+	}
+
+	Socket psocket(String h, int p) {
+		Socket psock = null;
+		try {
+			psock = new Socket(h, p);
+			proxy_is = new DataInputStream(new BufferedInputStream(
+			    psock.getInputStream(), 16384));
+			proxy_os = psock.getOutputStream();
+		} catch(Exception e) {
+			dbg("psocket prob: " + e.getMessage());
+			return null;
+		}
+
+		return psock;
+	}
+
+	String readline(DataInputStream i) {
+		byte[] ba = new byte[1];
+		String s = new String("");
+		ba[0] = 0;
+		try {
+			while (ba[0] != 0xa) {
+				ba[0] = (byte) i.readUnsignedByte();
+				s += new String(ba);
+			}
+		} catch (Exception e) {
+			;
+		}
+		return s;
+	}
+}
+
+class TrustDialog implements ActionListener {
+	String msg, host, text;
+	int port;
+	java.security.cert.Certificate[] trustallCerts = null;
+	boolean viewing_cert = false;
+	boolean trust_this_session = false;
+
+	/*
+	 * this is the gui to show the user the cert and info and ask
+	 * them if they want to continue using this cert.
+	 */
+
+	Button ok, cancel, viewcert;
+	TextArea textarea;
+	Checkbox accept, deny;
+	Dialog dialog;
+
+	String s1 = "Accept this certificate temporarily for this session";
+	String s2 = "Do not accept this certificate and do not connect to"
+	    + " this VNC server";
+	String ln = "\n---------------------------------------------------\n\n";
+		
+	TrustDialog (String h, int p, java.security.cert.Certificate[] s) {
+		host = h;
+		port = p;
+		trustallCerts = s;
+
+		msg = "VNC Server " + host + ":" + port + " Not Verified";
+	}
+
+	public boolean queryUser() {
+
+		/* create and display the dialog for unverified cert. */
+
+		Frame frame = new Frame(msg);
+
+		dialog = new Dialog(frame, true);
+
+		String infostr = "";
+		if (trustallCerts.length == 1) {
+			CertInfo ci = new CertInfo(trustallCerts[0]);
+			infostr = ci.get_certinfo("all");
+		}
+
+		text = "\n" 
++ "Unable to verify the identity of\n"
++ "\n"
++ "        " + host + ":" + port + "\n" 
++ "\n"
++ infostr
++ "\n"
++ "as a trusted VNC server.\n"
++ "\n"
++ "This may be due to:\n"
++ "\n"
++ " - Your requesting to View the Certificate before accepting.\n"
++ "\n"
++ " - The VNC server using a Self-Signed Certificate.\n"
++ "\n"
++ " - The VNC server using a Certificate Authority not recognized by your\n"
++ "   Browser or Java Plugin runtime.\n"
++ "\n"
++ " - The use of an Apache SSL portal employing CONNECT proxying and the\n"
++ "   Apache web server has a certificate different from the VNC server's. \n"
++ "\n"
++ " - A Man-In-The-Middle attack impersonating as the VNC server you wish\n"
++ "   to connect to.  (Wouldn't that be exciting!!)\n"
++ "\n"
++ "By safely copying the VNC server's Certificate (or using a common\n"
++ "Certificate Authority certificate) you can configure your Web Browser or\n"
++ "Java Plugin to automatically authenticate this Server.\n"
++ "\n"
++ "If you do so, then you will only have to click \"Yes\" when this VNC\n"
++ "Viewer applet asks you whether to trust your Browser/Java Plugin's\n"
++ "acceptance of the certificate. (except for the Apache portal case above.)\n"
+;
+
+		/* the accept / do-not-accept radio buttons: */
+		CheckboxGroup checkbox = new CheckboxGroup();
+		accept = new Checkbox(s1, true, checkbox);
+		deny   = new Checkbox(s2, false, checkbox);
+
+		/* put the checkboxes in a panel: */
+		Panel check = new Panel();
+		check.setLayout(new GridLayout(2, 1));
+
+		check.add(accept);
+		check.add(deny);
+
+		/* make the 3 buttons: */
+		ok = new Button("OK");
+		cancel = new Button("Cancel");
+		viewcert = new Button("View Certificate");
+
+		ok.addActionListener(this);
+		cancel.addActionListener(this);
+		viewcert.addActionListener(this);
+
+		/* put the buttons in their own panel: */
+		Panel buttonrow = new Panel();
+		buttonrow.setLayout(new FlowLayout(FlowLayout.LEFT));
+		buttonrow.add(viewcert);
+		buttonrow.add(ok);
+		buttonrow.add(cancel);
+
+		/* label at the top: */
+		Label label = new Label(msg, Label.CENTER);
+		label.setFont(new Font("Helvetica", Font.BOLD, 16));
+
+		/* textarea in the middle */
+		textarea = new TextArea(text, 36, 64,
+		    TextArea.SCROLLBARS_VERTICAL_ONLY);
+		textarea.setEditable(false);
+
+		/* put the two panels in their own panel at bottom: */
+		Panel bot = new Panel();
+		bot.setLayout(new GridLayout(2, 1));
+		bot.add(check);
+		bot.add(buttonrow);
+
+		/* now arrange things inside the dialog: */
+		dialog.setLayout(new BorderLayout());
+
+		dialog.add("North", label);
+		dialog.add("South", bot);
+		dialog.add("Center", textarea);
+
+		dialog.pack();
+		dialog.resize(dialog.preferredSize());
+
+		dialog.show();	/* block here til OK or Cancel pressed. */
+
+		return trust_this_session;
+	}
+
+	public synchronized void actionPerformed(ActionEvent evt) {
+
+		if (evt.getSource() == viewcert) {
+			/* View Certificate button clicked */
+			if (viewing_cert) {
+				/* show the original info text: */
+				textarea.setText(text);
+				viewcert.setLabel("View Certificate");
+				viewing_cert = false;
+			} else {
+				int i;
+				/* show all (likely just one) certs: */
+				textarea.setText("");
+				for (i=0; i < trustallCerts.length; i++) {
+					int j = i + 1;
+					textarea.append("Certificate[" +
+					    j + "]\n\n");
+					textarea.append(
+					    trustallCerts[i].toString());
+					textarea.append(ln);
+				}
+				viewcert.setLabel("View Info");
+				viewing_cert = true;
+
+				textarea.setCaretPosition(0);
+			}
+
+		} else if (evt.getSource() == ok) {
+			/* OK button clicked */
+			if (accept.getState()) {
+				trust_this_session = true;
+			} else {
+				trust_this_session = false;
+			}
3858 3859
+			//dialog.dispose();
+			dialog.hide();
3860 3861 3862 3863 3864
+
+		} else if (evt.getSource() == cancel) {
+			/* Cancel button clicked */
+			trust_this_session = false;
+
3865 3866
+			//dialog.dispose();
+			dialog.hide();
3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997
+		}
+	}
+
+	String get_certinfo() {
+		String all = "";
+		String fields[] = {"CN", "OU", "O", "L", "C"};
+		int i;
+		if (trustallCerts.length < 1) {
+			all = "";
+			return all;
+		}
+		String cert = trustallCerts[0].toString();
+
+		/*
+		 * For now we simply scrape the cert string, there must
+		 * be an API for this... perhaps optionValue?
+		 */
+
+		for (i=0; i < fields.length; i++) {
+			int f, t, t1, t2;
+			String sub, mat = fields[i] + "=";
+			
+			f = cert.indexOf(mat, 0);
+			if (f > 0) {
+				t1 = cert.indexOf(", ", f);
+				t2 = cert.indexOf("\n", f);
+				if (t1 < 0 && t2 < 0) {
+					continue;
+				} else if (t1 < 0) {
+					t = t2;
+				} else if (t2 < 0) {
+					t = t1;
+				} else if (t1 < t2) {
+					t = t1;
+				} else {
+					t = t2;
+				}
+				if (t > f) {
+					sub = cert.substring(f, t);
+					all = all + "        " + sub + "\n";
+				}
+			}
+		}
+		return all;
+	}
+}
+
+class ProxyDialog implements ActionListener {
+	String guessedHost = null;
+	String guessedPort = null;
+	/*
+	 * this is the gui to show the user the cert and info and ask
+	 * them if they want to continue using this cert.
+	 */
+
+	Button ok;
+	Dialog dialog;
+	TextField entry;
+	String reply = "";
+
+	ProxyDialog (String h, int p) {
+		guessedHost = h;
+		try {
+			guessedPort = Integer.toString(p);
+		} catch (Exception e) {
+			guessedPort = "8080";
+		}
+	}
+
+	public void queryUser() {
+
+		/* create and display the dialog for unverified cert. */
+
+		Frame frame = new Frame("Need Proxy host:port");
+
+		dialog = new Dialog(frame, true);
+
+
+		Label label = new Label("Please Enter your https Proxy info as host:port", Label.CENTER);
+		//label.setFont(new Font("Helvetica", Font.BOLD, 16));
+		entry = new TextField(30);
+		ok = new Button("OK");
+		ok.addActionListener(this);
+
+		String guess = "";
+		if (guessedHost != null) {
+			guess = guessedHost + ":" + guessedPort;
+		}
+		entry.setText(guess);
+
+		dialog.setLayout(new BorderLayout());
+		dialog.add("North", label);
+		dialog.add("Center", entry);
+		dialog.add("South", ok);
+		dialog.pack();
+		dialog.resize(dialog.preferredSize());
+
+		dialog.show();	/* block here til OK or Cancel pressed. */
+		return;
+	}
+
+	public String getHost() {
+		int i = reply.indexOf(":");
+		if (i < 0) {
+			return "unknown";
+		}
+		String h = reply.substring(0, i);
+		return h;
+	}
+
+	public int getPort() {
+		int i = reply.indexOf(":");
+		int p = 8080;
+		if (i < 0) {
+			return p;
+		}
+		i++;
+		String ps = reply.substring(i);
+		try {
+			Integer I = new Integer(ps);
+			p = I.intValue();
+		} catch (Exception e) {
+			;
+		}
+		return p;
+	}
+
+	public synchronized void actionPerformed(ActionEvent evt) {
+		System.out.println(evt.getActionCommand());
+		if (evt.getSource() == ok) {
+			reply = entry.getText();
3998 3999
+			//dialog.dispose();
+			dialog.hide();
4000 4001 4002 4003
+		}
+	}
+}
+
4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074
+class ProxyPasswdDialog implements ActionListener {
+	String guessedHost = null;
+	String guessedPort = null;
+	String guessedUser = null;
+	String guessedPasswd = null;
+	String realm = null;
+	/*
+	 * this is the gui to show the user the cert and info and ask
+	 * them if they want to continue using this cert.
+	 */
+
+	Button ok;
+	Dialog dialog;
+	TextField entry1;
+	TextField entry2;
+	String reply1 = "";
+	String reply2 = "";
+
+	ProxyPasswdDialog (String h, int p, String realm) {
+		guessedHost = h;
+		try {
+			guessedPort = Integer.toString(p);
+		} catch (Exception e) {
+			guessedPort = "8080";
+		}
+		this.realm = realm;
+	}
+
+	public void queryUser() {
+
+		/* create and display the dialog for unverified cert. */
+
+		Frame frame = new Frame("Proxy Requires Username and Password");
+
+		dialog = new Dialog(frame, true);
+
+		//Label label = new Label("Please Enter your Web Proxy Username in the top Entry and Password in the bottom Entry", Label.CENTER);
+		TextArea label = new TextArea("Please Enter your Web Proxy\nUsername in the Top Entry and\nPassword in the Bottom Entry,\nand then press OK.", 4, 20, TextArea.SCROLLBARS_NONE);
+		entry1 = new TextField(30);
+		entry2 = new TextField(30);
+		entry2.setEchoChar('*');
+		ok = new Button("OK");
+		ok.addActionListener(this);
+
+		dialog.setLayout(new BorderLayout());
+		dialog.add("North", label);
+		dialog.add("Center", entry1);
+		dialog.add("South",  entry2);
+		dialog.add("East", ok);
+		dialog.pack();
+		dialog.resize(dialog.preferredSize());
+
+		dialog.show();	/* block here til OK or Cancel pressed. */
+		return;
+	}
+
+	public String getAuth() {
+		return reply1 + ":" + reply2;
+	}
+
+	public synchronized void actionPerformed(ActionEvent evt) {
+		System.out.println(evt.getActionCommand());
+		if (evt.getSource() == ok) {
+			reply1 = entry1.getText();
+			reply2 = entry2.getText();
+			//dialog.dispose();
+			dialog.hide();
+		}
+	}
+}
+
4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114
+class ClientCertDialog implements ActionListener {
+
+	Button ok;
+	Dialog dialog;
+	TextField entry;
+	String reply = "";
+
+	ClientCertDialog() {
+		;
+	}
+
+	public String queryUser() {
+
+		/* create and display the dialog for unverified cert. */
+
+		Frame frame = new Frame("Enter SSL Client Cert+Key String");
+
+		dialog = new Dialog(frame, true);
+
+
+		Label label = new Label("Please Enter the SSL Client Cert+Key String 308204c0...,...522d2d0a", Label.CENTER);
+		entry = new TextField(30);
+		ok = new Button("OK");
+		ok.addActionListener(this);
+
+		dialog.setLayout(new BorderLayout());
+		dialog.add("North", label);
+		dialog.add("Center", entry);
+		dialog.add("South", ok);
+		dialog.pack();
+		dialog.resize(dialog.preferredSize());
+
+		dialog.show();	/* block here til OK or Cancel pressed. */
+		return reply;
+	}
+
+	public synchronized void actionPerformed(ActionEvent evt) {
+		System.out.println(evt.getActionCommand());
+		if (evt.getSource() == ok) {
+			reply = entry.getText();
4115 4116
+			//dialog.dispose();
+			dialog.hide();
4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181
+		}
+	}
+}
+
+class BrowserCertsDialog implements ActionListener {
+	Button yes, no;
+	Dialog dialog;
+	String vncServer;
+	String hostport;
+	public boolean showCertDialog = true;
+
+	BrowserCertsDialog(String serv, String hp) {
+		vncServer = serv;
+		hostport = hp;
+	}
+
+	public void queryUser() {
+
+		/* create and display the dialog for unverified cert. */
+
+		Frame frame = new Frame("Use Browser/JVM Certs?");
+
+		dialog = new Dialog(frame, true);
+
+		String m = "";
+m += "\n";
+m += "This VNC Viewer applet does not have its own keystore to track\n";
+m += "SSL certificates, and so cannot authenticate the certificate\n";
+m += "of the VNC Server:\n";
+m += "\n";
+m += "        " + hostport + "\n\n        " + vncServer + "\n";
+m += "\n";
+m += "on its own.\n";
+m += "\n";
+m += "However, it has noticed that your Web Browser or Java VM Plugin\n";
+m += "has previously accepted the same certificate.  You may have set\n";
+m += "this up permanently or just for this session, or the server\n";
+m += "certificate was signed by a CA cert that your Web Browser or\n";
+m += "Java VM Plugin has.\n";
+m += "\n";
+m += "Should this VNC Viewer applet now connect to the above VNC server?\n";
+m += "\n";
+
+//		String m = "\nShould this VNC Viewer applet use your Browser/JVM certs to\n";
+//		m += "authenticate the VNC Server:\n";
+//		m += "\n        " + hostport + "\n\n        " + vncServer + "\n\n";    
+//		m += "(NOTE: this *includes* any certs you have Just Now accepted in a\n";
+//		m += "dialog box with your Web Browser or Java Applet Plugin)\n\n";
+
+		TextArea textarea = new TextArea(m, 20, 64,
+		    TextArea.SCROLLBARS_VERTICAL_ONLY);
+		textarea.setEditable(false);
+		yes = new Button("Yes");
+		yes.addActionListener(this);
+		no = new Button("No, Let Me See the Certificate.");
+		no.addActionListener(this);
+
+		dialog.setLayout(new BorderLayout());
+		dialog.add("North", textarea);
+		dialog.add("Center", yes);
+		dialog.add("South", no);
+		dialog.pack();
+		dialog.resize(dialog.preferredSize());
+
+		dialog.show();	/* block here til Yes or No pressed. */
4182
+		System.out.println("done show()");
4183 4184 4185 4186 4187 4188 4189
+		return;
+	}
+
+	public synchronized void actionPerformed(ActionEvent evt) {
+		System.out.println(evt.getActionCommand());
+		if (evt.getSource() == yes) {
+			showCertDialog = false;
4190 4191
+			//dialog.dispose();
+			dialog.hide();
4192 4193
+		} else if (evt.getSource() == no) {
+			showCertDialog = true;
4194 4195
+			//dialog.dispose();
+			dialog.hide();
4196
+		}
4197
+		System.out.println("done actionPerformed()");
4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254
+	}
+}
+
+class CertInfo {
+	String fields[] = {"CN", "OU", "O", "L", "C"};
+	java.security.cert.Certificate cert;
+	String certString = "";
+
+	CertInfo(java.security.cert.Certificate c) {
+		cert = c;
+		certString = cert.toString();
+	}
+	
+	String get_certinfo(String which) {
+		int i;
+		String cs = new String(certString);
+		String all = "";
+
+		/*
+		 * For now we simply scrape the cert string, there must
+		 * be an API for this... perhaps optionValue?
+		 */
+		for (i=0; i < fields.length; i++) {
+			int f, t, t1, t2;
+			String sub, mat = fields[i] + "=";
+			
+			f = cs.indexOf(mat, 0);
+			if (f > 0) {
+				t1 = cs.indexOf(", ", f);
+				t2 = cs.indexOf("\n", f);
+				if (t1 < 0 && t2 < 0) {
+					continue;
+				} else if (t1 < 0) {
+					t = t2;
+				} else if (t2 < 0) {
+					t = t1;
+				} else if (t1 < t2) {
+					t = t1;
+				} else {
+					t = t2;
+				}
+				if (t > f) {
+					sub = cs.substring(f, t);
+					all = all + "        " + sub + "\n";
+					if (which.equals(fields[i])) {
+						return sub;
+					}
+				}
+			}
+		}
+		if (which.equals("all")) {
+			return all;
+		} else {
+			return "";
+		}
+	}
+}
4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375
+
+class Base64Coder {
+
+	// Mapping table from 6-bit nibbles to Base64 characters.
+	private static char[]    map1 = new char[64];
+	   static {
+	      int i=0;
+	      for (char c='A'; c<='Z'; c++) map1[i++] = c;
+	      for (char c='a'; c<='z'; c++) map1[i++] = c;
+	      for (char c='0'; c<='9'; c++) map1[i++] = c;
+	      map1[i++] = '+'; map1[i++] = '/'; }
+
+	// Mapping table from Base64 characters to 6-bit nibbles.
+	private static byte[]    map2 = new byte[128];
+	   static {
+	      for (int i=0; i<map2.length; i++) map2[i] = -1;
+	      for (int i=0; i<64; i++) map2[map1[i]] = (byte)i; }
+
+	/**
+	* Encodes a string into Base64 format.
+	* No blanks or line breaks are inserted.
+	* @param s  a String to be encoded.
+	* @return   A String with the Base64 encoded data.
+	*/
+	public static String encodeString (String s) {
+	   return new String(encode(s.getBytes())); }
+
+	/**
+	* Encodes a byte array into Base64 format.
+	* No blanks or line breaks are inserted.
+	* @param in  an array containing the data bytes to be encoded.
+	* @return    A character array with the Base64 encoded data.
+	*/
+	public static char[] encode (byte[] in) {
+	   return encode(in,in.length); }
+
+	/**
+	* Encodes a byte array into Base64 format.
+	* No blanks or line breaks are inserted.
+	* @param in   an array containing the data bytes to be encoded.
+	* @param iLen number of bytes to process in <code>in</code>.
+	* @return     A character array with the Base64 encoded data.
+	*/
+	public static char[] encode (byte[] in, int iLen) {
+	   int oDataLen = (iLen*4+2)/3;       // output length without padding
+	   int oLen = ((iLen+2)/3)*4;         // output length including padding
+	   char[] out = new char[oLen];
+	   int ip = 0;
+	   int op = 0;
+	   while (ip < iLen) {
+	      int i0 = in[ip++] & 0xff;
+	      int i1 = ip < iLen ? in[ip++] & 0xff : 0;
+	      int i2 = ip < iLen ? in[ip++] & 0xff : 0;
+	      int o0 = i0 >>> 2;
+	      int o1 = ((i0 &   3) << 4) | (i1 >>> 4);
+	      int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
+	      int o3 = i2 & 0x3F;
+	      out[op++] = map1[o0];
+	      out[op++] = map1[o1];
+	      out[op] = op < oDataLen ? map1[o2] : '='; op++;
+	      out[op] = op < oDataLen ? map1[o3] : '='; op++; }
+	   return out; }
+
+	/**
+	* Decodes a string from Base64 format.
+	* @param s  a Base64 String to be decoded.
+	* @return   A String containing the decoded data.
+	* @throws   IllegalArgumentException if the input is not valid Base64 encoded data.
+	*/
+	public static String decodeString (String s) {
+	   return new String(decode(s)); }
+
+	/**
+	* Decodes a byte array from Base64 format.
+	* @param s  a Base64 String to be decoded.
+	* @return   An array containing the decoded data bytes.
+	* @throws   IllegalArgumentException if the input is not valid Base64 encoded data.
+	*/
+	public static byte[] decode (String s) {
+	   return decode(s.toCharArray()); }
+
+	/**
+	* Decodes a byte array from Base64 format.
+	* No blanks or line breaks are allowed within the Base64 encoded data.
+	* @param in  a character array containing the Base64 encoded data.
+	* @return    An array containing the decoded data bytes.
+	* @throws    IllegalArgumentException if the input is not valid Base64 encoded data.
+	*/
+	public static byte[] decode (char[] in) {
+	   int iLen = in.length;
+	   if (iLen%4 != 0) throw new IllegalArgumentException ("Length of Base64 encoded input string is not a multiple of 4.");
+	   while (iLen > 0 && in[iLen-1] == '=') iLen--;
+	   int oLen = (iLen*3) / 4;
+	   byte[] out = new byte[oLen];
+	   int ip = 0;
+	   int op = 0;
+	   while (ip < iLen) {
+	      int i0 = in[ip++];
+	      int i1 = in[ip++];
+	      int i2 = ip < iLen ? in[ip++] : 'A';
+	      int i3 = ip < iLen ? in[ip++] : 'A';
+	      if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127)
+		 throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");
+	      int b0 = map2[i0];
+	      int b1 = map2[i1];
+	      int b2 = map2[i2];
+	      int b3 = map2[i3];
+	      if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)
+		 throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");
+	      int o0 = ( b0       <<2) | (b1>>>4);
+	      int o1 = ((b1 & 0xf)<<4) | (b2>>>2);
+	      int o2 = ((b2 &   3)<<6) |  b3;
+	      out[op++] = (byte)o0;
+	      if (op<oLen) out[op++] = (byte)o1;
+	      if (op<oLen) out[op++] = (byte)o2; }
+	   return out; }
+
+	// Dummy constructor.
+	private Base64Coder() {}
+
+}
4376 4377
diff -Naur JavaViewer.orig/VncCanvas.java JavaViewer/VncCanvas.java
--- JavaViewer.orig/VncCanvas.java	2005-11-21 18:50:18.000000000 -0500
4378
+++ JavaViewer/VncCanvas.java	2007-05-31 15:33:20.000000000 -0400
4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411
@@ -27,6 +27,9 @@
 import java.lang.*;
 import java.util.zip.*;
 
+// begin runge/x11vnc
+import java.util.Collections;
+// end runge/x11vnc
 
 //
 // VncCanvas is a subclass of Canvas which draws a VNC desktop on it.
@@ -85,6 +88,22 @@
 		
 		cm24 = new DirectColorModel(24, 0xFF0000, 0x00FF00, 0x0000FF);
 
+// begin runge/x11vnc
+// kludge to not show any Java cursor in the canvas since we are
+// showing the soft cursor (should be a user setting...)
+Cursor dot = Toolkit.getDefaultToolkit().createCustomCursor(
+    Toolkit.getDefaultToolkit().createImage(new byte[4]), new Point(0,0),
+    "dot");
+this.setCursor(dot);
+
+// while we are at it... get rid of the keyboard traversals that
+// make it so we can't type a Tab character:
+this.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
+    Collections.EMPTY_SET);
+this.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,
+    Collections.EMPTY_SET);
+// end runge/x11vnc
+
 		colors = new Color[256];
 		// sf@2005 - Now Default
 		for (int i = 0; i < 256; i++)
4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422
@@ -202,6 +221,9 @@
 	
 	public void setPixelFormat() throws IOException {
 		// sf@2005 - Adding more color modes
+		if (viewer.graftFtp) {
+			return;
+		}
 		if (viewer.options.eightBitColors > 0)
 		{
 			viewer.options.oldEightBitColors = viewer.options.eightBitColors;
@@ -237,6 +259,9 @@
4423 4424 4425 4426 4427 4428 4429 4430 4431
 		}
 		else 
 		{
+// begin runge/x11vnc
+			viewer.options.oldEightBitColors = viewer.options.eightBitColors;
+// end runge/x11vnc
 			rfb.writeSetPixelFormat(
 				32,
 				24,
4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463
@@ -376,12 +401,14 @@
 		// Start/stop session recording if necessary.
 		viewer.checkRecordingStatus();
 
-		rfb.writeFramebufferUpdateRequest(
-			0,
-			0,
-			rfb.framebufferWidth,
-			rfb.framebufferHeight,
-			false);
+		if (!viewer.graftFtp) {
+			rfb.writeFramebufferUpdateRequest(
+				0,
+				0,
+				rfb.framebufferWidth,
+				rfb.framebufferHeight,
+				false);
+		}
 
 		//
 		// main dispatch loop
@@ -390,6 +417,9 @@
 		while (true) {
 			// Read message type from the server.
 			int msgType = rfb.readServerMessageType();
+			if (viewer.ftpOnly && msgType != RfbProto.rfbFileTransfer) {
+				System.out.println("msgType:" + msgType);
+			}
 
 			// Process the message depending on its type.
 			switch (msgType) {
@@ -1532,9 +1562,14 @@
4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480
 							else
 							{
 								result =
-									0xFF000000 | (pixBuf[i * 4 + 1] & 0xFF)
-										<< 16 | (pixBuf[i * 4 + 2] & 0xFF)
-										<< 8 | (pixBuf[i * 4 + 3] & 0xFF);
+// begin runge/x11vnc
+//									0xFF000000 | (pixBuf[i * 4 + 1] & 0xFF)
+//										<< 16 | (pixBuf[i * 4 + 2] & 0xFF)
+//										<< 8 | (pixBuf[i * 4 + 3] & 0xFF);
+									0xFF000000 | (pixBuf[i * 4 + 2] & 0xFF)
+										<< 16 | (pixBuf[i * 4 + 1] & 0xFF)
+										<< 8 | (pixBuf[i * 4 + 0] & 0xFF);
+// end runge/x11vnc
 							}
 						} else {
 							result = 0; // Transparent pixel
4481
@@ -1565,9 +1600,14 @@
4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500
 						else
 						{
 							result =
-								0xFF000000 | (pixBuf[i * 4 + 1] & 0xFF)
-									<< 16 | (pixBuf[i * 4 + 2] & 0xFF)
-									<< 8 | (pixBuf[i * 4 + 3] & 0xFF);
+// begin runge/x11vnc
+//								0xFF000000 | (pixBuf[i * 4 + 1] & 0xFF)
+//									<< 16 | (pixBuf[i * 4 + 2] & 0xFF)
+//									<< 8 | (pixBuf[i * 4 + 3] & 0xFF);
+								0xFF000000 | (pixBuf[i * 4 + 2] & 0xFF)
+									<< 16 | (pixBuf[i * 4 + 1] & 0xFF)
+									<< 8 | (pixBuf[i * 4 + 0] & 0xFF);
+// end runge/x11vnc
 						}
 					} else {
 						result = 0; // Transparent pixel
diff -Naur JavaViewer.orig/VncViewer.java JavaViewer/VncViewer.java
--- JavaViewer.orig/VncViewer.java	2006-05-24 15:14:40.000000000 -0400
4501
+++ JavaViewer/VncViewer.java	2009-06-19 10:31:23.000000000 -0400
4502
@@ -80,11 +80,11 @@
4503 4504 4505 4506 4507 4508 4509 4510
   GridBagLayout gridbag;
   ButtonPanel buttonPanel;
   AuthPanel authenticator;
-  VncCanvas vc;
+  VncCanvas vc = null;
   OptionsFrame options;
   ClipboardFrame clipboard;
   RecordingFrame rec;
4511 4512 4513 4514 4515
-  FTPFrame ftp; // KMC: FTP Frame declaration
+  FTPFrame ftp = null; // KMC: FTP Frame declaration
 
   // Control session recording.
   Object recordingSync;
4516 4517 4518 4519 4520 4521 4522 4523 4524
@@ -96,7 +96,7 @@
 
   // Variables read from parameter values.
   String host;
-  int port;
+  int port, vncserverport;
   String passwordParam;
   String encPasswordParam;
   boolean showControls;
4525
@@ -115,28 +115,70 @@
4526 4527 4528 4529 4530 4531 4532 4533 4534 4535
   int i;
   // mslogon support 2 end
 
+// begin runge/x11vnc
+boolean disableSSL;
+boolean GET;
+String CONNECT;
+String urlPrefix;
+String httpsPort;
+String oneTimeKey;
4536
+String ftpDropDown;
4537 4538
+String proxyHost;
+String proxyPort;
4539 4540 4541 4542 4543 4544
+boolean forceProxy;
+boolean ignoreProxy;
+boolean trustAllVncCerts;
+boolean trustUrlVncCert;
+
+boolean ignoreMSLogonCheck;
4545 4546 4547
+boolean delayAuthPanel;
+boolean ftpOnly;
+boolean graftFtp;
4548
+boolean dsmActive;
4549 4550 4551
+
+boolean gotAuth;
+int authGot;
4552 4553 4554 4555 4556 4557
+// end runge/x11vnc
+
+
   //
   // init()
   //
4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575
 
+public void ftp_init() {
+	boolean show = false;
+	if (ftp != null) {
+		show = true;
+	}
+	ftp = null;
+
+	ftp = new FTPFrame(this); // KMC: FTPFrame creation
+
+	if (show) {
+		ftp.doOpen();
+		rfb.readServerDriveList();
+	}
+}
+
   public void init() {
 
4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601
     readParameters();
 
     if (inSeparateFrame) {
-      vncFrame = new Frame("Ultr@VNC");
-      if (!inAnApplet) {
-	vncFrame.add("Center", this);
-      }
-      vncContainer = vncFrame;
+	vncFrame = new Frame("Ultr@VNC");
+	if (!inAnApplet) {
+		vncFrame.add("Center", this);
+	}
+	vncContainer = vncFrame;
     } else {
-      vncContainer = this;
+	vncContainer = this;
     }
 
     recordingSync = new Object();
 
     options = new OptionsFrame(this);
     clipboard = new ClipboardFrame(this);
+
     // authenticator = new AuthPanel(false);   // mslogon support : go to connectAndAuthenticate()
     if (RecordingFrame.checkSecurity())
       rec = new RecordingFrame(this);
4602
@@ -147,10 +189,11 @@
4603 4604 4605 4606 4607 4608 4609
     cursorUpdatesDef = null;
     eightBitColorsDef = null;
 
-    if (inSeparateFrame)
+    if (inSeparateFrame && vncFrame != null)
       vncFrame.addWindowListener(this);
 
4610 4611 4612 4613 4614 4615
-    ftp = new FTPFrame(this); // KMC: FTPFrame creation
+    ftp_init();
+
     rfbThread = new Thread(this);
     rfbThread.start();
   }
4616
@@ -186,6 +229,30 @@
4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646
       gbc.weightx = 1.0;
       gbc.weighty = 1.0;
 
+	if (ftpOnly) {
+		if (showControls) {
+			buttonPanel.enableButtons();
+		}
+		ActionListener taskPerformer = new ActionListener() {
+			public void actionPerformed(ActionEvent evt) {
+				vncFrame.setVisible(false);
+				ftp.setSavedLocations();
+				if (ftp.isVisible()) {
+					ftp.doClose();
+				} else {
+					ftp.doOpen();
+				}
+				rfb.readServerDriveList();
+			}
+		};
+		Timer t = new Timer(300, taskPerformer);
+		t.setRepeats(false);
+		t.start();
+		
+		vc.processNormalProtocol();
+		return;
+	}
+
 	// Add ScrollPanel to applet mode
 
 	// Create a panel which itself is resizeable and can hold
4647
@@ -286,6 +353,24 @@
4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671
 
   void connectAndAuthenticate() throws Exception {
 
+	if (graftFtp) {
+		rfb = new RfbProto(host, port, this);
+		rfb.desktopName = "ftponly";
+		rfb.framebufferWidth  = 12;
+		rfb.framebufferHeight = 12;
+		rfb.bitsPerPixel = 32;
+		rfb.depth = 24;
+		rfb.trueColour = true;
+		rfb.redMax   = 255;
+		rfb.greenMax = 255;
+		rfb.blueMax  = 255;
+		rfb.redShift   = 16;
+		rfb.greenShift = 8;
+		rfb.blueShift  = 0;
+		rfb.inNormalProtocol = true;
+		return;
+	}
+
     // If "ENCPASSWORD" parameter is set, decrypt the password into
     // the passwordParam string.
 
4672
@@ -336,7 +421,22 @@
4673 4674 4675 4676 4677
     //
 
     
-    prologueDetectAuthProtocol() ;
+// begin runge/x11vnc
4678 4679 4680 4681 4682 4683 4684 4685 4686 4687
+	gotAuth = false;
+	if (delayAuthPanel) {
+      		if (tryAuthenticate(null, null)) {
+			if (inSeparateFrame) {
+				vncFrame.pack();
+				vncFrame.show();
+			}
+      			return;
+      		}
+	}
4688 4689 4690 4691 4692 4693 4694 4695
+//  prologueDetectAuthProtocol() ;
+    if (ignoreMSLogonCheck == false) {
+        prologueDetectAuthProtocol() ;
+    }
+// end runge/x11vnc
 
     authenticator = new AuthPanel(mslogon);
     
4696
@@ -390,6 +490,10 @@
4697 4698 4699 4700 4701 4702 4703 4704 4705 4706
 	break;
       //mslogon support end
 
+// begin runge/x11vnc
+	gotAuth = false;
+// end runge/x11vnc
+
       // Retry on authentication failure.
       authenticator.retry();
     }
4707
@@ -405,9 +509,11 @@
4708
 
4709
   void prologueDetectAuthProtocol() throws Exception {
4710
 
4711 4712 4713 4714 4715 4716 4717 4718 4719
-    rfb = new RfbProto(host, port, this);
+	if (!gotAuth) {
+		rfb = new RfbProto(host, port, this);
 
-    rfb.readVersionMsg();
+		rfb.readVersionMsg();
+	}
 
     System.out.println("RFB server supports protocol version " +
4720
 		       rfb.serverMajor + "." + rfb.serverMinor);
4721
@@ -431,16 +537,36 @@
4722
 
4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742
   boolean tryAuthenticate(String us, String pw) throws Exception {
     
-    rfb = new RfbProto(host, port, this);
+	int authScheme;
 
-    rfb.readVersionMsg();
+	if (!gotAuth) {
+		rfb = new RfbProto(host, port, this);
 
-    System.out.println("RFB server supports protocol version " +
-		       rfb.serverMajor + "." + rfb.serverMinor);
+		rfb.readVersionMsg();
 
-    rfb.writeVersionMsg();
+		System.out.println("RFB server supports protocol version: " +
+			       rfb.serverMajor + "." + rfb.serverMinor);
+
+		rfb.writeVersionMsg();
 
-    int authScheme = rfb.readAuthScheme();
4743 4744
+		authScheme = rfb.readAuthScheme();
+
4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763
+		gotAuth = true;
+		authGot = authScheme;
+	} else {
+		authScheme = authGot;
+	}
+// begin runge/x11vnc
+	if (delayAuthPanel && pw == null) {
+		if (authScheme == RfbProto.NoAuth) {
+			System.out.println("No authentication needed");
+			return true;
+		} else {
+			return false;
+		}
+	}
+System.out.println("as: " + authScheme);
+// end runge/x11vnc
 
     switch (authScheme) {
 
4764
@@ -629,6 +755,10 @@
4765 4766 4767 4768 4769 4770 4771 4772 4773 4774
 
   void doProtocolInitialisation() throws IOException {
 
+	if (graftFtp) {
+		return;
+	}
+
     rfb.writeClientInit();
 
     rfb.readServerInit();
4775
@@ -775,8 +905,25 @@
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802
       }
     }
 
-    String str = readParameter("PORT", true);
-    port = Integer.parseInt(str);
+    port = 0;
+    String str = readParameter("PORT", false);
+    if (str != null) {
+	port = Integer.parseInt(str);
+    }
+    // When there is a proxy VNCSERVERPORT may be inaccessible (inside firewall).
+    vncserverport = 0;
+    str = readParameter("VNCSERVERPORT", false);
+    if (str != null) {
+	vncserverport = Integer.parseInt(str);
+    }
+    if (port == 0 && vncserverport == 0) {
+	fatalError("Neither PORT nor VNCSERVERPORT parameters specified");
+    }
+    if (port == 0) {
+	// Nevertheless, fall back to vncserverport if we have to.
+	System.out.println("using vncserverport: '" + vncserverport + "' for PORT.");
+	port = vncserverport;
+    }
 
     if (inAnApplet) {
       str = readParameter("Open New Window", false);
4803
@@ -804,6 +951,133 @@
4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844
     deferScreenUpdates = readIntParameter("Defer screen updates", 20);
     deferCursorUpdates = readIntParameter("Defer cursor updates", 10);
     deferUpdateRequests = readIntParameter("Defer update requests", 50);
+
+// begin runge/x11vnc
+    // SSL
+    disableSSL = false;
+    str = readParameter("DisableSSL", false);
+    if (str != null && str.equalsIgnoreCase("Yes"))
+      disableSSL = true;
+
+    httpsPort = readParameter("httpsPort", false);
+
+    // Extra GET, CONNECT string:
+    CONNECT = readParameter("CONNECT", false);
+    if (CONNECT != null) {
+	CONNECT = CONNECT.replaceAll(" ", ":");
+    }
+
+    GET = false;
+    str = readParameter("GET", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+      GET = true;
+    }
+    if (str != null && str.equalsIgnoreCase("1")) {
+      GET = true;
+    }
+
+    urlPrefix = readParameter("urlPrefix", false);
+    if (urlPrefix != null) {
+	urlPrefix = urlPrefix.replaceAll("%2F", "/");
+	urlPrefix = urlPrefix.replaceAll("%2f", "/");
+	urlPrefix = urlPrefix.replaceAll("_2F_", "/");
+	if (urlPrefix.indexOf("/") != 0) {
+		urlPrefix = "/" + urlPrefix;
+	}
+    } else {
+    	urlPrefix = "";
+    }
+    System.out.println("urlPrefix: '" + urlPrefix + "'");
+
4845 4846 4847 4848 4849 4850 4851 4852 4853 4854
+    ftpDropDown = readParameter("ftpDropDown", false);
+    if (ftpDropDown != null) {
+	ftpDropDown = ftpDropDown.replaceAll("%2F", "/");
+	ftpDropDown = ftpDropDown.replaceAll("%2f", "/");
+	ftpDropDown = ftpDropDown.replaceAll("_2F_", "/");
+	ftpDropDown = ftpDropDown.replaceAll("%20", " ");
+	System.out.println("ftpDropDown: '" + ftpDropDown + "'");
+    }
+
+
4855 4856 4857 4858 4859 4860
+    oneTimeKey = readParameter("oneTimeKey", false);
+    if (oneTimeKey != null) {
+    	System.out.println("oneTimeKey: is set");
+    }
+
+    forceProxy = false;
4861 4862
+    proxyHost = null;
+    proxyPort = null;
4863
+    str = readParameter("forceProxy", false);
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
+    if (str != null) {
+	    if (str.equalsIgnoreCase("Yes")) {
+		forceProxy = true;
+	    } else if (str.equalsIgnoreCase("No")) {
+		forceProxy = false;
+	    } else {
+		forceProxy = true;
+		String[] pieces = str.split(" ");
+		proxyHost = new String(pieces[0]);
+		if (pieces.length >= 2) {
+			proxyPort = new String(pieces[1]);
+		} else {
+			proxyPort = new String("8080");
+		}
+	    }
4879
+    }
4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891
+    str = readParameter("proxyHost", false);
+    if (str != null) {
+	proxyHost = new String(str);
+    }
+    str = readParameter("proxyPort", false);
+    if (str != null) {
+	proxyPort = new String(str);
+    }
+    if (proxyHost != null && proxyPort == null) {
+    	proxyPort = new String("8080");
+    }
+
4892 4893 4894 4895 4896
+    ignoreProxy = false;
+    str = readParameter("ignoreProxy", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	ignoreProxy = true;
+    }
4897
+
4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912
+    trustAllVncCerts = false;
+    str = readParameter("trustAllVncCerts", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	trustAllVncCerts = true;
+    }
+    trustUrlVncCert = false;
+    str = readParameter("trustUrlVncCert", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	trustUrlVncCert = true;
+    }
+    ignoreMSLogonCheck = false;
+    str = readParameter("ignoreMSLogonCheck", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	ignoreMSLogonCheck = true;
+    }
4913 4914 4915 4916 4917 4918 4919 4920 4921 4922
+    ftpOnly = false;
+    str = readParameter("ftpOnly", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	ftpOnly = true;
+    }
+    graftFtp = false;
+    str = readParameter("graftFtp", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	graftFtp = true;
+    }
4923 4924 4925 4926 4927
+    dsmActive = false;
+    str = readParameter("dsmActive", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	dsmActive = true;
+    }
4928 4929 4930 4931 4932
+    delayAuthPanel = false;
+    str = readParameter("delayAuthPanel", false);
+    if (str != null && str.equalsIgnoreCase("Yes")) {
+	delayAuthPanel = true;
+    }
4933 4934 4935 4936
+// end runge/x11vnc
   }
 
   public String readParameter(String name, boolean required) {