summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Lightning <kassah@gmail.com>2012-06-06 23:10:13 -0700
committerWilliam Lightning <kassah@gmail.com>2012-06-06 23:10:13 -0700
commit8d0c7fb5aca8251ff72d9727c7e6997f761d89e2 (patch)
tree02fcb0bc41ad1f045132deee2ed799ce34f62124
parentab44059b8b3c545b00beab7547195e51cedac6a4 (diff)
downloadnovnc-8d0c7fb5aca8251ff72d9727c7e6997f761d89e2.tar.gz
Add ultravnc_repeater.pl support to rfb.js and vnc_auto.html
-rw-r--r--include/rfb.js18
-rw-r--r--vnc_auto.html6
2 files changed, 19 insertions, 5 deletions
diff --git a/include/rfb.js b/include/rfb.js
index 4362ce1..4de9be9 100644
--- a/include/rfb.js
+++ b/include/rfb.js
@@ -39,6 +39,7 @@ var that = {}, // Public API methods
rfb_port = 5900,
rfb_password = '',
rfb_path = '',
+ rfb_repeaterID = '',
rfb_state = 'disconnected',
rfb_version = 0,
@@ -659,10 +660,10 @@ mouseMove = function(x, y) {
init_msg = function() {
//Util.Debug(">> init_msg [rfb_state '" + rfb_state + "']");
- var strlen, reason, length, sversion, cversion,
+ var strlen, reason, length, sversion, cversion, repeaterID,
i, types, num_types, challenge, response, bpp, depth,
big_endian, red_max, green_max, blue_max, red_shift,
- green_shift, blue_shift, true_color, name_length;
+ green_shift, blue_shift, true_color, name_length, is_repeater;
//Util.Debug("ws.rQ (" + ws.rQlen() + ") " + ws.rQslice(0));
switch (rfb_state) {
@@ -673,7 +674,9 @@ init_msg = function() {
}
sversion = ws.rQshiftStr(12).substr(4,7);
Util.Info("Server ProtocolVersion: " + sversion);
+ is_repeater = 0;
switch (sversion) {
+ case "000.000": is_repeater = 1; break; // UltraVNC repeater
case "003.003": rfb_version = 3.3; break;
case "003.006": rfb_version = 3.3; break; // UltraVNC
case "003.889": rfb_version = 3.3; break; // Apple Remote Desktop
@@ -684,6 +687,13 @@ init_msg = function() {
default:
return fail("Invalid server version " + sversion);
}
+ if (is_repeater) {
+ repeaterID = rfb_repeaterID;
+ while(repeaterID.length < 250)
+ repeaterID += "\0";
+ ws.send_string(repeaterID);
+ break;
+ }
if (rfb_version > rfb_max_version) {
rfb_version = rfb_max_version;
}
@@ -730,6 +740,7 @@ init_msg = function() {
// Server decides
if (ws.rQwait("security scheme", 4)) { return false; }
rfb_auth_scheme = ws.rQshift32();
+ //rfb_auth_scheme = ws.rQshiftStr(12);
}
updateState('Authentication',
"Authenticating using scheme: " + rfb_auth_scheme);
@@ -1748,13 +1759,14 @@ clientCutText = function(text) {
// Public API interface functions
//
-that.connect = function(host, port, password, path) {
+that.connect = function(host, port, password, path, repeaterID) {
//Util.Debug(">> connect");
rfb_host = host;
rfb_port = port;
rfb_password = (password !== undefined) ? password : "";
rfb_path = (path !== undefined) ? path : "";
+ rfb_repeaterID = (repeaterID !== undefined) ? repeaterID : "";
if ((!rfb_host) || (!rfb_port)) {
return fail("Must set host and port");
diff --git a/vnc_auto.html b/vnc_auto.html
index 8d370b5..0969dbe 100644
--- a/vnc_auto.html
+++ b/vnc_auto.html
@@ -84,7 +84,7 @@
}
window.onload = function () {
- var host, port, password, path, token;
+ var host, port, password, path, token, repeaterID;
$D('sendCtrlAltDelButton').style.display = "inline";
$D('sendCtrlAltDelButton').onclick = sendCtrlAltDel;
@@ -103,6 +103,8 @@
password = WebUtil.getQueryVar('password', '');
path = WebUtil.getQueryVar('path', 'websockify');
+ repeaterID = WebUtil.getQueryVar('repeaterid','');
+
if ((!host) || (!port)) {
updateState('failed',
"Must specify host and port in URL");
@@ -118,7 +120,7 @@
'view_only': WebUtil.getQueryVar('view_only', false),
'updateState': updateState,
'onPasswordRequired': passwordRequired});
- rfb.connect(host, port, password, path);
+ rfb.connect(host, port, password, path, repeaterID);
};
</script>