smap_devinfo_config.lua 1.0 KB

123456789101112131415161718192021222324
  1. -- Copyright 2009 Daniel Dickinson
  2. -- Licensed to the public under the Apache License 2.0.
  3. require("luci.controller.luci_diag.devinfo_common")
  4. m = Map("luci_devinfo", translate("SIP Device Scanning Configuration"), translate("Configure scanning for supported SIP devices on specified networks. Decreasing \'Timeout\', \'Repeat Count\', and/or \'Sleep Between Requests\' may speed up scans, but also may fail to find some devices."))
  5. s = m:section(SimpleSection, "", translate("Use Configuration"))
  6. b = s:option(DummyValue, "_scans", translate("Perform Scans (this can take a few minutes)"))
  7. b.value = ""
  8. b.titleref = luci.dispatcher.build_url("admin", "status", "smap_devinfo")
  9. scannet = m:section(TypedSection, "smap_scannet", translate("Scanning Configuration"), translate("Networks to scan for supported devices"))
  10. scannet.addremove = true
  11. scannet.anonymous = false
  12. local ports
  13. ports = scannet:option(Value, "ports", translate("Ports"))
  14. ports.optional = true
  15. ports.rmempty = true
  16. luci.controller.luci_diag.devinfo_common.config_devinfo_scan(m, scannet)
  17. return m