diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-11-08 10:25:30 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-11-08 10:25:30 +0100 |
commit | 392ba53effa26d2592db14c607c7d3103cce34d3 (patch) | |
tree | e9aae0061e142b6c0e9f8d418b27d8f54002fc97 /modules/luci-base/root/usr/libexec/rpcd | |
parent | b3681bd9dc13699759329c76ba77a0bef3ebb340 (diff) |
luci-base, luci-mod-network: migrate getDUIDHints method to C plugin
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/root/usr/libexec/rpcd')
-rwxr-xr-x | modules/luci-base/root/usr/libexec/rpcd/luci | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 5bd17c75d2..56cb7bc85d 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -160,26 +160,6 @@ local methods = { end }, - getDUIDHints = { - call = function() - local fp = io.open('/var/hosts/odhcpd') - local result = { } - if fp then - for line in fp:lines() do - local dev, duid, name = string.match(line, '# (%S+)%s+(%S+)%s+%d+%s+(%S+)') - if dev and duid and name then - result[duid] = { - name = (name ~= "-") and name or nil, - device = dev - } - end - end - fp:close() - end - return result - end - }, - getConntrackHelpers = { call = function() local ok, fd = pcall(io.open, "/usr/share/fw3/helpers.conf", "r") |