Encrypt default to off, TODO updates.

This commit is contained in:
Joel Martin 2010-08-03 13:20:44 -05:00
parent 8db09746b7
commit 208c832b28
2 changed files with 2 additions and 5 deletions

View File

@ -1,8 +1,5 @@
Short Term:
- Proper Javascript namespacing for Canvas and RFB (using function for
true local variables and functions).
- Timing delta between frames in proxy record log, for playback
support (for demo and test).

View File

@ -44,7 +44,7 @@ load: function(target) {
html += ' onmouseout="DefaultControls.canvasFocus();">';
html += ' <ul>';
html += ' <li><input id="VNC_encrypt"';
html += ' type="checkbox" checked> Encrypt</li>';
html += ' type="checkbox"> Encrypt</li>';
html += ' <li><input id="VNC_base64"';
html += ' type="checkbox" checked> Base64 Encode</li>';
html += ' <li><input id="VNC_true_color"';
@ -112,7 +112,7 @@ load: function(target) {
DC.initSetting('host', '');
DC.initSetting('port', '');
DC.initSetting('password', '');
DC.initSetting('encrypt', true);
DC.initSetting('encrypt', false);
DC.initSetting('base64', true);
DC.initSetting('true_color', true);
DC.initSetting('cursor', true);