Added TCP/UDP routing indicator to mobile app.

This commit is contained in:
Ylian Saint-Hilaire 2020-07-24 14:05:38 -07:00
parent ae45187e9c
commit e05f771aac
2 changed files with 1946 additions and 1918 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2112,7 +2112,7 @@
// Setup device notification // Setup device notification
var devNotify = ''; var devNotify = '';
if (nodes[i].sessions != null) { if (nodes[i].sessions != null) {
if ((nodes[i].sessions.kvm != null) || (nodes[i].sessions.terminal != null) || (nodes[i].sessions.files != null)) { if ((nodes[i].sessions.kvm != null) || (nodes[i].sessions.terminal != null) || (nodes[i].sessions.files != null) || (nodes[i].sessions.tcp != null) || (nodes[i].sessions.udp != null)) {
devNotify = '<img class=deviceNotifyDot src=images/icon-relay-notify.png width=16 height=16>'; devNotify = '<img class=deviceNotifyDot src=images/icon-relay-notify.png width=16 height=16>';
} }
@ -2216,6 +2216,12 @@
} else if (i == 'files') { } else if (i == 'files') {
x += '<u>' + "Files" + '</u>'; x += '<u>' + "Files" + '</u>';
for (var j in node.sessions.files) { x += addHtmlValue4(getUserName(j), ((node.sessions.files[j] == 1) ? "1 session" : nobreak(format("{0} sessions", node.sessions.files[j])))); } for (var j in node.sessions.files) { x += addHtmlValue4(getUserName(j), ((node.sessions.files[j] == 1) ? "1 session" : nobreak(format("{0} sessions", node.sessions.files[j])))); }
} else if (i == 'tcp') {
x += '<u>' + "TCP Routing" + '</u>';
for (var j in node.sessions.tcp) { x += addHtmlValue4(getUserName(j), ((node.sessions.tcp[j] == 1) ? "1 session" : nobreak(format("{0} sessions", node.sessions.tcp[j])))); }
} else if (i == 'udp') {
x += '<u>' + "UDP Routing" + '</u>';
for (var j in node.sessions.udp) { x += addHtmlValue4(getUserName(j), ((node.sessions.udp[j] == 1) ? "1 session" : nobreak(format("{0} sessions", node.sessions.udp[j])))); }
} }
} }
if (x != '') setDialogMode(2, "Sessions" + ' - ' + EscapeHtml(node.name), 1, null, x, 'SESSIONS-' + node._id); if (x != '') setDialogMode(2, "Sessions" + ' - ' + EscapeHtml(node.name), 1, null, x, 'SESSIONS-' + node._id);
@ -2303,7 +2309,7 @@
currentNode = node; currentNode = node;
// Setup session notification // Setup session notification
QV('p10deviceNotify', (currentNode.sessions != null) && ((node.sessions.kvm != null) || (node.sessions.terminal != null) || (node.sessions.files != null))); QV('p10deviceNotify', (currentNode.sessions != null) && ((node.sessions.kvm != null) || (node.sessions.terminal != null) || (node.sessions.files != null) || (node.sessions.tcp != null) || (node.sessions.udp != null)));
// Device Battery // Device Battery
QV('p10deviceBattery', false); QV('p10deviceBattery', false);