mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-04-23 11:55:43 -04:00
Merge pull request #4218 from si458/patch-1
if header is not null for websockets
This commit is contained in:
commit
513e5b5ade
@ -642,6 +642,7 @@ module.exports.CreateWebRelay = function (parent, db, args, domain) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Tunnel is now in web socket pass-thru mode
|
// Tunnel is now in web socket pass-thru mode
|
||||||
|
if (header != null) {
|
||||||
if ((typeof header.connection == 'string') && (header.connection.toLowerCase() == 'upgrade')) {
|
if ((typeof header.connection == 'string') && (header.connection.toLowerCase() == 'upgrade')) {
|
||||||
// Websocket upgrade succesful
|
// Websocket upgrade succesful
|
||||||
obj.socketParseState = 2;
|
obj.socketParseState = 2;
|
||||||
@ -651,6 +652,7 @@ module.exports.CreateWebRelay = function (parent, db, args, domain) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Send data thru the relay tunnel. Written to use TLS if needed.
|
// Send data thru the relay tunnel. Written to use TLS if needed.
|
||||||
function send(data) { try { if (obj.tls) { obj.tls.write(data); } else { obj.wsClient.send(data); } } catch (ex) { } }
|
function send(data) { try { if (obj.tls) { obj.tls.write(data); } else { obj.wsClient.send(data); } } catch (ex) { } }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user