1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

MeshCentral can now remember RDP credentials.

This commit is contained in:
Ylian Saint-Hilaire 2021-06-29 17:13:18 -07:00
parent e373cec943
commit d4ecae73d9
8 changed files with 2351 additions and 2185 deletions

View file

@ -147,7 +147,7 @@
* @param password {string} session password
* @param next {function} asynchrone end callback
*/
connect : function (ip, domain, username, password, next) {
connect : function (ip, domain, username, password, options, next) {
// Start connection
var self = this;
this.socket = new WebSocket('wss://' + window.location.host + '/mstscrelay.ashx');
@ -164,6 +164,7 @@
domain: domain,
username: username,
password: password,
options: options,
locale: Mstsc.locale()
}]));
};