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

1. Add latency timer and callback opportunity to CreateAgentRedirect

2. Add latency to Remote Desktop view
This commit is contained in:
Ryan Blenis 2020-04-14 01:48:20 -04:00
parent cdb0431eb1
commit 48da888540
3 changed files with 29 additions and 2 deletions

View file

@ -1912,6 +1912,10 @@ function createMeshCore(agent) {
if (sdp != null) { ws.write({ type: 'answer', ctrlChannel: '102938', sdp: sdp }); }
break;
}
case 'latency': {
ws.write({ type: 'latency', ctrlChannel: '102938', time: obj.time });
break;
}
}
}