mirror of
https://github.com/openwrt/luci.git
synced 2025-12-22 01:44:35 +04:00
Fixes: 2965e527f5 ("luci-proto-autoip: add protocol support for avahi-autoipd")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
17 lines
237 B
JavaScript
17 lines
237 B
JavaScript
'use strict';
|
|
'require network';
|
|
|
|
return network.registerProtocol('autoip', {
|
|
getI18n: function() {
|
|
return _('Avahi IPv4LL');
|
|
},
|
|
|
|
getOpkgPackage: function() {
|
|
return 'avahi-autoipd';
|
|
},
|
|
|
|
renderFormOptions: function(s) {
|
|
|
|
}
|
|
});
|