mirror of
https://github.com/openwrt/luci.git
synced 2025-03-14 15:57:22 +00:00
17 lines
237 B
JavaScript
17 lines
237 B
JavaScript
'use strict';
|
|
'require network';
|
|
|
|
return network.registerProtocol('autoip', {
|
|
getI18n: function() {
|
|
return _('Avahi IPv4LL');
|
|
},
|
|
|
|
getPackageName: function() {
|
|
return 'avahi-autoipd';
|
|
},
|
|
|
|
renderFormOptions: function(s) {
|
|
|
|
}
|
|
});
|