Skip to content

Commit

Permalink
Change RepeaterID to be a config option
Browse files Browse the repository at this point in the history
  • Loading branch information
kassah committed Jun 23, 2012
1 parent 8d0c7fb commit 12acb66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 3 additions & 4 deletions include/rfb.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ var that = {}, // Public API methods
rfb_port = 5900,
rfb_password = '',
rfb_path = '',
rfb_repeaterID = '',

rfb_state = 'disconnected',
rfb_version = 0,
Expand Down Expand Up @@ -135,6 +134,7 @@ Util.conf_defaults(conf, that, defaults, [
['focusContainer', 'wo', 'dom', document, 'DOM element that captures keyboard input'],

['encrypt', 'rw', 'bool', false, 'Use TLS/SSL/wss encryption'],
['repeaterID', 'rw', 'string', '', 'RepeaterID to connect to'],
['true_color', 'rw', 'bool', true, 'Request true color pixel data'],
['local_cursor', 'rw', 'bool', false, 'Request locally rendered cursor'],
['shared', 'rw', 'bool', true, 'Request shared mode'],
Expand Down Expand Up @@ -688,7 +688,7 @@ init_msg = function() {
return fail("Invalid server version " + sversion);
}
if (is_repeater) {
repeaterID = rfb_repeaterID;
repeaterID = conf.repeaterID;
while(repeaterID.length < 250)
repeaterID += "\0";
ws.send_string(repeaterID);
Expand Down Expand Up @@ -1759,14 +1759,13 @@ clientCutText = function(text) {
// Public API interface functions
//

that.connect = function(host, port, password, path, repeaterID) {
that.connect = function(host, port, password, path) {
//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");
Expand Down
2 changes: 2 additions & 0 deletions include/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ Util.conf_default = function(cfg, api, defaults, v, mode, type, defval, desc) {
}
} else if (type in {'integer':1, 'int':1}) {
val = parseInt(val, 10);
} else if (type === 'string') {
val = String(val);
} else if (type === 'func') {
if (!val) {
val = function () {};
Expand Down

0 comments on commit 12acb66

Please sign in to comment.