From 2dd17fad6cfda3e54bc59de9a58fa789767a11d4 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 13 Sep 2019 14:18:43 +0200 Subject: [PATCH] luci-base: network.js: implement Hosts.getMACHints() Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/network.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js index 235ea1e41..106139f26 100644 --- a/modules/luci-base/htdocs/luci-static/resources/network.js +++ b/modules/luci-base/htdocs/luci-static/resources/network.js @@ -1307,6 +1307,18 @@ Hosts = L.Class.extend({ if (this.hosts[mac].ipv6 == ip6addr) return mac; return null; + }, + + getMACHints: function(preferIp6) { + var rv = []; + for (var mac in this.hosts) { + var hint = this.hosts[mac].name || + this.hosts[mac][preferIp6 ? 'ipv6' : 'ipv4'] || + this.hosts[mac][preferIp6 ? 'ipv4' : 'ipv6']; + + rv.push([mac, hint]); + } + return rv.sort(function(a, b) { return a[0] > b[0] }); } }); -- 2.25.1