123456789101112131415161718192021222324 |
- -- Copyright 2009 Daniel Dickinson
- -- Licensed to the public under the Apache License 2.0.
- require("luci.controller.luci_diag.devinfo_common")
- 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."))
- s = m:section(SimpleSection, "", translate("Use Configuration"))
- b = s:option(DummyValue, "_scans", translate("Perform Scans (this can take a few minutes)"))
- b.value = ""
- b.titleref = luci.dispatcher.build_url("admin", "status", "smap_devinfo")
- scannet = m:section(TypedSection, "smap_scannet", translate("Scanning Configuration"), translate("Networks to scan for supported devices"))
- scannet.addremove = true
- scannet.anonymous = false
- local ports
- ports = scannet:option(Value, "ports", translate("Ports"))
- ports.optional = true
- ports.rmempty = true
- luci.controller.luci_diag.devinfo_common.config_devinfo_scan(m, scannet)
- return m
|