├── .github └── workflows │ ├── build-packages.yml │ └── build-web.yml ├── PIC ├── 1.jpg └── 2.jpg ├── README.md ├── daed ├── Makefile └── files │ ├── daed.config │ └── daed.init ├── luci-app-daed ├── Makefile ├── luasrc │ ├── controller │ │ └── daed.lua │ ├── model │ │ └── cbi │ │ │ └── daed │ │ │ ├── basic.lua │ │ │ └── log.lua │ └── view │ │ └── daed │ │ ├── daed.htm │ │ ├── daed_log.htm │ │ └── daed_status.htm ├── po │ └── zh_Hans │ │ └── daed.po └── root │ ├── etc │ ├── daed │ │ └── daed_sub.sh │ ├── hotplug.d │ │ └── iface │ │ │ └── 98-daed │ └── init.d │ │ └── luci_daed │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-daed.json └── patchset ├── kix-bind_fix.patch ├── kix-feat_DNS_high_concurrency_optimization.patch └── kix-feat_lockless_concurrency_udp_dns.patch /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /.github/workflows/build-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/.github/workflows/build-web.yml -------------------------------------------------------------------------------- /PIC/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/PIC/1.jpg -------------------------------------------------------------------------------- /PIC/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/PIC/2.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/README.md -------------------------------------------------------------------------------- /daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/daed/Makefile -------------------------------------------------------------------------------- /daed/files/daed.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/daed/files/daed.config -------------------------------------------------------------------------------- /daed/files/daed.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/daed/files/daed.init -------------------------------------------------------------------------------- /luci-app-daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/Makefile -------------------------------------------------------------------------------- /luci-app-daed/luasrc/controller/daed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/controller/daed.lua -------------------------------------------------------------------------------- /luci-app-daed/luasrc/model/cbi/daed/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/model/cbi/daed/basic.lua -------------------------------------------------------------------------------- /luci-app-daed/luasrc/model/cbi/daed/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/model/cbi/daed/log.lua -------------------------------------------------------------------------------- /luci-app-daed/luasrc/view/daed/daed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/view/daed/daed.htm -------------------------------------------------------------------------------- /luci-app-daed/luasrc/view/daed/daed_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/view/daed/daed_log.htm -------------------------------------------------------------------------------- /luci-app-daed/luasrc/view/daed/daed_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/luasrc/view/daed/daed_status.htm -------------------------------------------------------------------------------- /luci-app-daed/po/zh_Hans/daed.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/po/zh_Hans/daed.po -------------------------------------------------------------------------------- /luci-app-daed/root/etc/daed/daed_sub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/root/etc/daed/daed_sub.sh -------------------------------------------------------------------------------- /luci-app-daed/root/etc/hotplug.d/iface/98-daed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/root/etc/hotplug.d/iface/98-daed -------------------------------------------------------------------------------- /luci-app-daed/root/etc/init.d/luci_daed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/root/etc/init.d/luci_daed -------------------------------------------------------------------------------- /luci-app-daed/root/usr/share/rpcd/acl.d/luci-app-daed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/luci-app-daed/root/usr/share/rpcd/acl.d/luci-app-daed.json -------------------------------------------------------------------------------- /patchset/kix-bind_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/patchset/kix-bind_fix.patch -------------------------------------------------------------------------------- /patchset/kix-feat_DNS_high_concurrency_optimization.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/patchset/kix-feat_DNS_high_concurrency_optimization.patch -------------------------------------------------------------------------------- /patchset/kix-feat_lockless_concurrency_udp_dns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QiuSimons/luci-app-daed/HEAD/patchset/kix-feat_lockless_concurrency_udp_dns.patch --------------------------------------------------------------------------------