├── .github └── workflows │ └── upstream.yml ├── .gitignore ├── LICENSE ├── MentoHUST-OpenWrt-ipk ├── Makefile ├── README.md └── src │ ├── Makefile │ ├── dlfunc.c │ ├── dlfunc.h │ ├── md5.c │ ├── md5.h │ ├── mentohust.c │ ├── mentohust.conf │ ├── mycheck.c │ ├── mycheck.h │ ├── myconfig.c │ ├── myconfig.h │ ├── myfunc.c │ ├── myfunc.h │ ├── myini.c │ ├── myini.h │ ├── mystate.c │ ├── mystate.h │ ├── strnormalize.c │ ├── strnormalize.h │ └── types.h ├── README.md ├── UnblockNeteaseMusic-Go ├── Makefile └── files │ ├── ca.crt │ ├── server.crt │ └── server.key ├── UnblockNeteaseMusic └── Makefile ├── adbyby ├── Makefile └── files │ ├── adbyby.sh │ ├── adhook.ini │ ├── amd64 │ └── adbyby │ ├── arm │ └── adbyby │ ├── armv7 │ └── adbyby │ ├── data │ ├── lazy.bin │ ├── lazy.txt │ ├── rules.txt │ ├── user.txt │ └── video.txt │ ├── doc │ └── hidecss.js │ ├── mips │ └── adbyby │ ├── mipsle │ └── adbyby │ ├── update.info │ ├── user.action │ └── x86 │ └── adbyby ├── adguardhome ├── Makefile └── files │ └── adguardhome.init ├── aliyundrive-webdav ├── Makefile └── files │ ├── aliyundrive-webdav.config │ └── aliyundrive-webdav.init ├── amule-dlp ├── Makefile └── patches │ ├── 001_fix_empty_wxcharbuffer.patch │ ├── 002_enable_upnp_cross_compile.patch │ └── 003_BanLowID.patch ├── antileech ├── Makefile └── src │ ├── CString_wx.h │ ├── Interface.cpp │ ├── Makefile.am │ ├── antiLeech.cpp │ ├── antiLeech.h │ ├── antiLeech_wx.cpp │ ├── antiLeech_wx.h │ ├── autogen.sh │ ├── configure.ac │ └── sdc2amule.diff ├── app-store-ui ├── Makefile └── src │ └── dist │ ├── index.html │ └── luci-static │ └── istore │ ├── index.js │ ├── style.css │ └── vendor.js ├── aria2 ├── Config.in ├── Makefile ├── files │ ├── aria2.conf │ └── aria2.init └── patches │ ├── 0001-options-unlock-connection-per-server-limit.patch │ ├── 0002-download-retry-on-slow-speed-and-reset.patch │ ├── 0003-option-add-option-to-retry-on-http-4xx.patch │ └── 0004-Disable-auto-added-Want-Digest-header.patch ├── automount ├── Makefile └── files │ ├── 15-automount │ └── zzz-move-automount ├── autoshare-ksmbd ├── Makefile └── files │ └── 20-smb-ksmbd ├── autoshare-samba ├── Makefile └── files │ └── 20-smb ├── baidupcs-web ├── Makefile └── patches │ └── 001-add-missing-go-sum.patch ├── bpytop ├── Makefile └── patches │ └── 010-remove-tzset.patch ├── brook └── Makefile ├── cgroupfs-mount ├── Makefile └── files │ └── cgroupfs-mount.init ├── chinadns-ng ├── Makefile └── patches │ └── ipv6_gfwlist_only.patch ├── cpulimit └── Makefile ├── cups ├── Makefile └── files │ ├── cupsd.init │ └── etc │ └── cups │ ├── classes.conf │ ├── client.conf │ ├── cupsd.conf │ └── printers.conf ├── ddns-scripts-aliyun ├── Makefile ├── aliyun.com.json └── update_aliyun_com.sh ├── ddns-scripts-dnspod ├── Makefile ├── README.md ├── dnspod.cn.json ├── dnspod.com.json ├── update_dnspod_cn.sh └── update_dnspod_com.sh ├── ddnsto ├── Makefile └── files │ ├── ddnsto.config │ ├── ddnsto.init │ └── ddnsto.uci-default ├── diy ├── .packages │ ├── chinadns-ng │ │ └── patches │ │ │ └── ipv6_gfwlist_only.patch │ ├── ddns-scripts-aliyun │ │ ├── Makefile │ │ ├── aliyun.com.json │ │ └── update_aliyun_com.sh │ └── ddns-scripts-dnspod │ │ ├── Makefile │ │ ├── README.md │ │ ├── dnspod.cn.json │ │ ├── dnspod.com.json │ │ ├── update_dnspod_cn.sh │ │ └── update_dnspod_com.sh ├── convert_translation.sh ├── create_acl_for_luci.sh └── patches │ ├── AdGuardHome.patch │ ├── acl.patch │ ├── cgroupfs-mount.patch │ ├── ddnsto.patch │ ├── luci-app-cifs.patch │ ├── luci-app-mentohust.patch │ ├── miniupnp.patch │ ├── mtwifi.patch │ ├── openvpn.patch │ ├── pdnsd-filter-aaaa.patch │ └── qbittorrent.patch ├── dns2socks └── Makefile ├── dnsforwarder ├── Makefile └── files │ ├── etc │ ├── config │ │ └── dnsforwarder │ ├── dnsforwarder │ │ └── gfw.txt │ └── init.d │ │ └── dnsforwarder │ └── usr │ └── share │ └── dnsforwarder │ └── gfwlist.sh ├── dnsproxy └── Makefile ├── dpdk ├── Makefile └── patches │ └── 0001-Handling-backtrace-and-execinfo-header-file.patch ├── dsmboot ├── Makefile └── files │ ├── dsm.iso │ ├── dsmboot │ ├── menu.lst │ └── pxelinux.0 ├── filebrowser ├── Makefile └── files │ ├── filebrowser.config │ └── filebrowser.init ├── gmediarender └── Makefile ├── go-aliyundrive-webdav ├── Makefile └── files │ ├── go-aliyundrive-webdav.config │ └── go-aliyundrive-webdav.init ├── gost ├── Makefile └── files │ ├── gost.config │ └── gost.init ├── gowebdav ├── Makefile └── files │ ├── gowebdav.config │ └── gowebdav.init ├── hysteria └── Makefile ├── ikoolproxy ├── Makefile └── files │ ├── aarch64 │ ├── arm │ ├── i386 │ ├── mips │ ├── mipsel │ └── x86_64 ├── ipt2socks └── Makefile ├── iptvhelper ├── Makefile └── files │ ├── etc │ ├── config │ │ └── iptvhelper │ ├── firewall.iptvhelper │ └── init.d │ │ └── iptvhelper │ └── usr │ └── sbin │ └── iptvhelper.sh ├── jpcre2 └── Makefile ├── kcptun └── Makefile ├── libcron └── Makefile ├── libcryptopp └── Makefile ├── linkease ├── Makefile └── files │ ├── aria2.sh │ ├── linkease.config │ ├── linkease.init │ └── linkease.uci-default ├── lua-ipops ├── Makefile └── src │ └── ipops.lua ├── lua-maxminddb └── Makefile ├── luci-app-accesscontrol ├── Makefile ├── luasrc │ ├── controller │ │ └── mia.lua │ ├── model │ │ └── cbi │ │ │ └── mia.lua │ └── view │ │ └── mia │ │ └── mia_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── mia.po └── root │ ├── etc │ ├── config │ │ └── mia │ ├── init.d │ │ └── mia │ ├── mia.include │ └── uci-defaults │ │ └── mia │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-accesscontrol.json ├── luci-app-adbyby-plus ├── Makefile ├── luasrc │ ├── controller │ │ └── adbyby.lua │ ├── model │ │ └── cbi │ │ │ └── adbyby │ │ │ ├── advanced.lua │ │ │ ├── base.lua │ │ │ ├── black.lua │ │ │ ├── block.lua │ │ │ ├── esc.lua │ │ │ ├── help.lua │ │ │ └── user.lua │ └── view │ │ └── adbyby │ │ ├── adbyby_status.htm │ │ └── refresh.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── adbyby.po └── root │ ├── etc │ ├── config │ │ └── adbyby │ ├── init.d │ │ └── adbyby │ └── uci-defaults │ │ └── adbyby │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── adbyby │ └── usr │ └── share │ ├── adbyby │ ├── ad-update │ ├── adblack.conf │ ├── adblock.sh │ ├── adbybyfirst.sh │ ├── adbybyupdate.sh │ ├── adesc.conf │ ├── adhost.conf │ ├── admem.sh │ ├── adupdate.sh │ ├── blockip.conf │ ├── dnsmasq.adblock │ ├── dnsmasq.ads │ ├── dnsmasq.esc │ ├── firewall.include │ ├── rule-count │ ├── rule-update │ └── rules.txt │ └── rpcd │ └── acl.d │ └── luci-app-adbyby-plus.json ├── luci-app-adguardhome ├── Makefile ├── luasrc │ ├── controller │ │ └── AdGuardHome.lua │ ├── model │ │ └── cbi │ │ │ └── AdGuardHome │ │ │ ├── base.lua │ │ │ ├── log.lua │ │ │ └── manual.lua │ └── view │ │ └── AdGuardHome │ │ ├── AdGuardHome_check.htm │ │ ├── AdGuardHome_chpass.htm │ │ ├── AdGuardHome_status.htm │ │ ├── log.htm │ │ └── yamleditor.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── adguardhome.po └── root │ ├── etc │ ├── config │ │ └── AdGuardHome │ ├── init.d │ │ └── AdGuardHome │ └── uci-defaults │ │ └── 40_luci-AdGuardHome │ ├── usr │ └── share │ │ ├── AdGuardHome │ │ ├── AdGuardHome_template.yaml │ │ ├── addhost.sh │ │ ├── firewall.start │ │ ├── getsyslog.sh │ │ ├── gfw2adg.sh │ │ ├── links.txt │ │ ├── tailto.sh │ │ ├── update_core.sh │ │ ├── waitnet.sh │ │ └── watchconfig.sh │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-adguardhome.json │ └── www │ └── luci-static │ └── resources │ ├── codemirror │ ├── addon │ │ └── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ ├── mode │ │ └── yaml │ │ │ └── yaml.js │ └── theme │ │ └── dracula.css │ └── twin-bcrypt.min.js ├── luci-app-advanced ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── resources │ │ └── fileassistant │ │ ├── fb.css │ │ ├── fb.js │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ └── link-icon.png ├── luasrc │ ├── controller │ │ ├── advanced.lua │ │ └── fileassistant.lua │ ├── model │ │ └── cbi │ │ │ └── advanced.lua │ └── view │ │ ├── fileassistant.htm │ │ └── filebrowser.htm └── root │ ├── etc │ ├── config │ │ └── advanced │ └── uci-defaults │ │ └── 40_luci-fb │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-advanced.json ├── luci-app-airplay2 ├── Makefile ├── luasrc │ ├── controller │ │ └── shairport-sync.lua │ ├── model │ │ └── cbi │ │ │ └── shairport-sync.lua │ └── view │ │ └── shairport-sync │ │ └── shairport-sync_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── shairport-sync.po └── root │ ├── etc │ ├── asound.conf │ ├── config │ │ └── shairport-sync │ ├── init.d │ │ └── shairport-sync │ └── uci-defaults │ │ └── 99-shairport-sync │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-airplay2.json ├── luci-app-airwhu ├── Makefile ├── luasrc │ ├── controller │ │ └── airwhu.lua │ └── model │ │ └── cbi │ │ └── airwhu.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── luci-app-airwhu.po └── root │ ├── bin │ └── ipv6masq.sh │ ├── etc │ ├── config │ │ └── airwhu │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-ipv6nat │ └── init.d │ │ └── mentohust │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-airwhu.json ├── luci-app-aliddns ├── Makefile ├── luasrc │ ├── controller │ │ └── aliddns.lua │ └── model │ │ └── cbi │ │ └── aliddns.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── aliddns.po └── root │ ├── etc │ ├── config │ │ └── aliddns │ ├── init.d │ │ └── aliddns │ └── uci-defaults │ │ └── luci-aliddns │ └── usr │ ├── sbin │ └── aliddns │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-aliddns.json ├── luci-app-aliyundrive-webdav ├── Makefile ├── luasrc │ ├── controller │ │ └── aliyundrive-webdav.lua │ ├── model │ │ └── cbi │ │ │ └── aliyundrive-webdav │ │ │ ├── client.lua │ │ │ └── log.lua │ └── view │ │ └── aliyundrive-webdav │ │ ├── aliyundrive-webdav_log.htm │ │ └── aliyundrive-webdav_status.htm ├── po │ ├── zh-cn │ │ └── aliyundrive-webdav.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── luci-aliyundrive-webdav ├── luci-app-amule ├── Makefile ├── luasrc │ ├── controller │ │ └── amule.lua │ ├── model │ │ └── cbi │ │ │ └── amule.lua │ └── view │ │ └── amule │ │ ├── detail_logview.htm │ │ ├── overview_status.htm │ │ └── webshell.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── amule.po └── root │ ├── etc │ ├── amule │ │ └── amule.conf.template │ ├── config │ │ └── amule │ ├── hotplug.d │ │ └── iface │ │ │ └── 20-amule │ ├── init.d │ │ └── amule │ └── uci-defaults │ │ └── luci-amule │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-amule.json ├── luci-app-appfilter ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── echarts.min.js ├── luasrc │ ├── controller │ │ └── appfilter.lua │ ├── model │ │ └── cbi │ │ │ └── appfilter │ │ │ ├── appfilter.lua │ │ │ └── dev_status.lua │ └── view │ │ ├── admin_network │ │ ├── dev_status.htm │ │ └── user_status.htm │ │ └── cbi │ │ ├── oaf_dvalue.htm │ │ └── oaf_upload.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── appfilter.po └── root │ ├── etc │ └── uci-defaults │ │ ├── 91_luci-oaf │ │ └── 92_add_user_section │ └── usr │ ├── lib │ └── lua │ │ └── luci │ │ └── tools │ │ └── status.lua │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-appfilter.json ├── luci-app-argon-config ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── argon-config.lua │ ├── model │ │ └── cbi │ │ │ └── argon-config.lua │ └── view │ │ └── argon-config │ │ ├── other_button.htm │ │ ├── other_dvalue.htm │ │ └── other_upload.htm ├── po │ ├── es │ │ └── argon-config.po │ ├── templates │ │ └── argon-config.pot │ ├── zh-cn │ │ └── argon-config.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── argon │ └── uci-defaults │ │ └── luci-argon-config │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-argon-config.json ├── luci-app-arpbind ├── Makefile ├── luasrc │ ├── controller │ │ └── arpbind.lua │ └── model │ │ └── cbi │ │ └── arpbind.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── arpbind.po └── root │ ├── etc │ ├── hotplug.d │ │ └── iface │ │ │ └── 50-arpbind │ ├── init.d │ │ └── arpbind │ └── uci-defaults │ │ └── luci-arpbind │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-arpbind.json ├── luci-app-autoipsetadder ├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── autoipsetadder.lua │ ├── model │ │ └── cbi │ │ │ └── autoipsetadder.lua │ └── view │ │ └── autoipsetadder │ │ ├── check.htm │ │ └── status.htm └── root │ ├── etc │ ├── config │ │ └── autoipsetadder │ ├── init.d │ │ └── autoipsetadder │ └── uci-defaults │ │ └── 40_luci-autoipsetadder │ └── usr │ ├── bin │ └── autoipsetadder │ │ ├── autoaddlist.sh │ │ ├── debugip.sh │ │ ├── tailto.sh │ │ └── testip.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-autoipsetadder.json ├── luci-app-autoreboot ├── Makefile ├── luasrc │ ├── controller │ │ └── autoreboot.lua │ └── model │ │ └── cbi │ │ └── autoreboot.lua ├── po │ ├── zh-cn │ │ └── autoreboot.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── autoreboot │ ├── init.d │ │ └── autoreboot │ └── uci-defaults │ │ └── luci-app-autoreboot │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-autoreboot.json ├── luci-app-autorepeater ├── .directory ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── files │ ├── 95-upnpc │ ├── autorepeater.config │ ├── autorepeater.init │ ├── autorepeater_functions.sh │ ├── autorepeater_updater.sh │ ├── luci-app-autorepeater.json │ ├── luci │ │ ├── controller │ │ │ └── autorepeater.lua │ │ ├── i18n │ │ │ └── autorepeater.zh-cn.po │ │ ├── model │ │ │ └── cbi │ │ │ │ └── autorepeater │ │ │ │ ├── autorepeater.lua │ │ │ │ ├── global.lua │ │ │ │ ├── hints.lua │ │ │ │ ├── logview.lua │ │ │ │ ├── overview.lua │ │ │ │ ├── pnpmaps.lua │ │ │ │ └── stations.lua │ │ ├── tools │ │ │ └── autorepeater.lua │ │ └── view │ │ │ └── autorepeater │ │ │ ├── detail_lvalue.htm │ │ │ ├── detail_value.htm │ │ │ ├── dynamiclist.htm │ │ │ ├── global_buttons.htm │ │ │ ├── global_link.htm │ │ │ ├── global_value.htm │ │ │ ├── logsview.htm │ │ │ ├── overview_doubleline.htm │ │ │ ├── overview_enabled.htm │ │ │ ├── overview_updater.htm │ │ │ ├── wifi_dev.htm │ │ │ └── wifi_overview.htm │ ├── rfkill.sh │ ├── root │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-autorepeater │ ├── scan_mac80211.awk │ └── scan_wifi.sh └── tools │ ├── lmotool │ ├── Makefile │ └── src │ │ ├── lmotool │ │ ├── lmotool.c │ │ ├── template_lmo.c │ │ └── template_lmo.h │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-autotimeset ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── autotimeset.lua │ └── model │ │ └── cbi │ │ └── autotimeset.lua ├── po │ ├── zh-cn │ │ └── autotimeset.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── autotimeset │ └── init.d │ │ └── autotimeset │ ├── uci-defaults │ └── 40_luci-app-netspeedtest │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-autotimeset.json ├── luci-app-babeld ├── Makefile ├── luasrc │ └── view │ │ └── babeld.htm └── root │ ├── etc │ └── uci-defaults │ │ └── 40_luci-babeld │ ├── usr │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-babeld.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-babeld.json │ └── www │ └── luci-static │ └── resources │ └── babeld.js ├── luci-app-baidupcs-web ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── baidupcs-web.lua │ ├── model │ │ └── cbi │ │ │ └── baidupcs-web.lua │ └── view │ │ └── baidupcs-web │ │ └── baidupcs-web_status.htm └── root │ ├── etc │ ├── config │ │ └── baidupcs-web │ ├── init.d │ │ └── baidupcs-web │ └── uci-defaults │ │ └── luci-baidupcs-web │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-baidupcs-web.json ├── luci-app-beardropper ├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── beardropper.lua │ ├── model │ │ └── cbi │ │ │ └── beardropper │ │ │ ├── log.lua │ │ │ └── setting.lua │ └── view │ │ └── beardropper │ │ └── status.htm ├── po │ ├── zh-cn │ ├── zh_Hans │ │ └── beardropper.po │ └── zh_Hant │ │ └── beardropper.po ├── preview │ ├── 1_setting.png │ └── 2_blockedlist.png └── root │ ├── etc │ ├── config │ │ └── beardropper │ ├── init.d │ │ └── beardropper │ └── uci-defaults │ │ └── luci-beardropper │ └── usr │ ├── sbin │ └── beardropper │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-beardropper.json ├── luci-app-brook-server ├── Makefile ├── luasrc │ ├── controller │ │ └── brook_server.lua │ ├── model │ │ └── cbi │ │ │ └── brook_server │ │ │ ├── api │ │ │ └── brook.lua │ │ │ ├── config.lua │ │ │ └── index.lua │ └── view │ │ └── brook_server │ │ ├── brook.htm │ │ ├── log.htm │ │ ├── users_list_status.htm │ │ └── users_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── brook_server.po └── root │ ├── etc │ ├── config │ │ └── brook_server │ ├── init.d │ │ └── brook_server │ └── uci-defaults │ │ └── luci-app-brook-server │ └── usr │ └── share │ ├── brook_server │ └── firewall.include │ └── rpcd │ └── acl.d │ └── luci-app-brook-server.json ├── luci-app-bypass ├── Makefile ├── luasrc │ ├── controller │ │ └── bypass.lua │ ├── model │ │ └── cbi │ │ │ └── bypass │ │ │ ├── advanced.lua │ │ │ ├── api.lua │ │ │ ├── app_update.lua │ │ │ ├── base.lua │ │ │ ├── client-config.lua │ │ │ ├── control.lua │ │ │ ├── kcptun.lua │ │ │ ├── log.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ ├── trojan_go.lua │ │ │ └── xray.lua │ └── view │ │ └── bypass │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── kcptun_version.htm │ │ ├── link.htm │ │ ├── ping.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── status.htm │ │ ├── status_bottom.htm │ │ ├── subscribe.htm │ │ ├── trojan_go_version.htm │ │ └── xray_version.htm ├── po │ ├── zh-cn │ │ └── bypass.po │ └── zh_Hans └── root │ ├── etc │ ├── bypass │ │ ├── black.list │ │ ├── netflix.list │ │ ├── oversea.list │ │ ├── telegram.list │ │ └── white.list │ ├── config │ │ └── bypass │ ├── hotplug.d │ │ └── iface │ │ │ └── 21-bypass │ ├── init.d │ │ └── bypass │ └── uci-defaults │ │ └── luci-bypass │ ├── usr │ └── share │ │ ├── bypass │ │ ├── GeoLite2-Country.mmdb │ │ ├── by-check │ │ ├── by-gfw │ │ ├── by-monitor │ │ ├── by-preload │ │ ├── by-rules │ │ ├── by-switch │ │ ├── checknetwork │ │ ├── chinaipset │ │ ├── genred2config │ │ ├── gentrojanconfig │ │ ├── genv2config │ │ ├── subscribe │ │ └── update │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-bypass.json │ └── www │ └── luci-static │ └── bypass │ ├── flags │ ├── ad.svg │ ├── ae.svg │ ├── af.svg │ ├── ag.svg │ ├── ai.svg │ ├── al.svg │ ├── am.svg │ ├── ao.svg │ ├── ar.svg │ ├── as.svg │ ├── at.svg │ ├── au.svg │ ├── aw.svg │ ├── ax.svg │ ├── az.svg │ ├── ba.svg │ ├── bb.svg │ ├── bd.svg │ ├── be.svg │ ├── bf.svg │ ├── bg.svg │ ├── bh.svg │ ├── bi.svg │ ├── bj.svg │ ├── bl.svg │ ├── bm.svg │ ├── bn.svg │ ├── bo.svg │ ├── bq.svg │ ├── br.svg │ ├── bs.svg │ ├── bt.svg │ ├── bv.svg │ ├── bw.svg │ ├── by.svg │ ├── bz.svg │ ├── ca.svg │ ├── cc.svg │ ├── cd.svg │ ├── cf.svg │ ├── cg.svg │ ├── ch.svg │ ├── ci.svg │ ├── ck.svg │ ├── cl.svg │ ├── cm.svg │ ├── cn.svg │ ├── co.svg │ ├── cr.svg │ ├── cu.svg │ ├── cv.svg │ ├── cw.svg │ ├── cx.svg │ ├── cy.svg │ ├── cz.svg │ ├── de.svg │ ├── dj.svg │ ├── dk.svg │ ├── dm.svg │ ├── do.svg │ ├── dz.svg │ ├── ec.svg │ ├── ee.svg │ ├── eg.svg │ ├── eh.svg │ ├── er.svg │ ├── es-ca.svg │ ├── es.svg │ ├── et.svg │ ├── eu.svg │ ├── fi.svg │ ├── fj.svg │ ├── fk.svg │ ├── fm.svg │ ├── fo.svg │ ├── fr.svg │ ├── ga.svg │ ├── gb-eng.svg │ ├── gb-sct.svg │ ├── gb.svg │ ├── gd.svg │ ├── ge.svg │ ├── gf.svg │ ├── gg.svg │ ├── gh.svg │ ├── gi.svg │ ├── gl.svg │ ├── gm.svg │ ├── gn.svg │ ├── gp.svg │ ├── gq.svg │ ├── gr.svg │ ├── gt.svg │ ├── gu.svg │ ├── gw.svg │ ├── gy.svg │ ├── hk.svg │ ├── hm.svg │ ├── hn.svg │ ├── hr.svg │ ├── ht.svg │ ├── hu.svg │ ├── id.svg │ ├── ie.svg │ ├── il.svg │ ├── im.svg │ ├── in.svg │ ├── io.svg │ ├── iq.svg │ ├── ir.svg │ ├── is.svg │ ├── it.svg │ ├── je.svg │ ├── jm.svg │ ├── jo.svg │ ├── jp.svg │ ├── ke.svg │ ├── kg.svg │ ├── kh.svg │ ├── ki.svg │ ├── km.svg │ ├── kn.svg │ ├── kp.svg │ ├── kr.svg │ ├── kw.svg │ ├── ky.svg │ ├── kz.svg │ ├── la.svg │ ├── lb.svg │ ├── lc.svg │ ├── li.svg │ ├── lk.svg │ ├── loading.svg │ ├── lr.svg │ ├── ls.svg │ ├── lt.svg │ ├── lu.svg │ ├── lv.svg │ ├── ly.svg │ ├── ma.svg │ ├── mc.svg │ ├── md.svg │ ├── me.svg │ ├── mf.svg │ ├── mg.svg │ ├── mh.svg │ ├── mk.svg │ ├── ml.svg │ ├── mm.svg │ ├── mn.svg │ ├── mo.svg │ ├── mp.svg │ ├── mq.svg │ ├── mr.svg │ ├── ms.svg │ ├── mt.svg │ ├── mu.svg │ ├── mv.svg │ ├── mw.svg │ ├── mx.svg │ ├── my.svg │ ├── mz.svg │ ├── na.svg │ ├── nc.svg │ ├── ne.svg │ ├── nf.svg │ ├── ng.svg │ ├── ni.svg │ ├── nl.svg │ ├── no.svg │ ├── np.svg │ ├── nr.svg │ ├── nu.svg │ ├── nz.svg │ ├── om.svg │ ├── pa.svg │ ├── pe.svg │ ├── pf.svg │ ├── pg.svg │ ├── ph.svg │ ├── pk.svg │ ├── pl.svg │ ├── pm.svg │ ├── pn.svg │ ├── pr.svg │ ├── ps.svg │ ├── pt.svg │ ├── pw.svg │ ├── py.svg │ ├── qa.svg │ ├── re.svg │ ├── ro.svg │ ├── rs.svg │ ├── ru.svg │ ├── rw.svg │ ├── sa.svg │ ├── sb.svg │ ├── sc.svg │ ├── sd.svg │ ├── se.svg │ ├── sg.svg │ ├── si.svg │ ├── sj.svg │ ├── sk.svg │ ├── sl.svg │ ├── sm.svg │ ├── sn.svg │ ├── so.svg │ ├── sr.svg │ ├── ss.svg │ ├── st.svg │ ├── sv.svg │ ├── sy.svg │ ├── sz.svg │ ├── tc.svg │ ├── td.svg │ ├── tf.svg │ ├── tg.svg │ ├── th.svg │ ├── tj.svg │ ├── tk.svg │ ├── tl.svg │ ├── tm.svg │ ├── tn.svg │ ├── to.svg │ ├── tr.svg │ ├── tt.svg │ ├── tv.svg │ ├── tw.svg │ ├── tz.svg │ ├── ua.svg │ ├── ug.svg │ ├── us.svg │ ├── uy.svg │ ├── uz.svg │ ├── va.svg │ ├── vc.svg │ ├── ve.svg │ ├── vg.svg │ ├── vi.svg │ ├── vn.svg │ ├── vu.svg │ ├── wf.svg │ ├── ws.svg │ ├── ye.svg │ ├── yt.svg │ ├── za.svg │ ├── zm.svg │ └── zw.svg │ └── img │ ├── site_icon1_01.png │ ├── site_icon1_02.png │ ├── site_icon1_03.png │ ├── site_icon1_04.png │ ├── site_icon_01.png │ ├── site_icon_02.png │ ├── site_icon_03.png │ └── site_icon_04.png ├── luci-app-cd8021x ├── Makefile ├── luasrc │ ├── controller │ │ └── cd8021x.lua │ └── model │ │ └── cbi │ │ └── cd8021x.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── cd8021x.zh-cn.po └── root │ ├── etc │ ├── config │ │ └── cd8021x │ └── init.d │ │ └── cd8021x │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cd8021x.json ├── luci-app-cifs-mount ├── Makefile ├── luasrc │ ├── controller │ │ └── cifs.lua │ └── model │ │ └── cbi │ │ └── cifs.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── cifs.po └── root │ ├── etc │ ├── config │ │ └── cifs │ ├── init.d │ │ └── cifs │ └── uci-defaults │ │ └── cifs │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cifs-mount.json ├── luci-app-control-timewol ├── Makefile ├── luasrc │ ├── controller │ │ └── timewol.lua │ ├── model │ │ └── cbi │ │ │ └── timewol.lua │ └── view │ │ └── timewol │ │ ├── index.htm │ │ └── timewol.htm ├── po │ ├── zh-cn │ │ └── timewol.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── timewol │ ├── init.d │ │ └── timewol │ └── uci-defaults │ │ └── luci-app-control-timewol │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-timewol.json ├── luci-app-control-webrestriction ├── Makefile ├── luasrc │ ├── controller │ │ └── webrestriction.lua │ ├── model │ │ └── cbi │ │ │ └── webrestriction.lua │ └── view │ │ └── webrestriction │ │ ├── index.htm │ │ └── webrestriction.htm ├── po │ ├── zh-cn │ │ └── webrestriction.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── webrestriction │ ├── init.d │ │ └── webrestriction │ └── uci-defaults │ │ └── luci-app-control-webrestriction │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-webrestriction.json ├── luci-app-control-weburl ├── Makefile ├── luasrc │ ├── controller │ │ └── weburl.lua │ ├── model │ │ └── cbi │ │ │ └── weburl.lua │ └── view │ │ └── weburl │ │ ├── index.htm │ │ └── weburl.htm ├── po │ ├── zh-cn │ │ └── weburl.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── weburl │ ├── init.d │ │ └── weburl │ └── uci-defaults │ │ └── luci-app-control-weburl │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-control-weburl.json ├── luci-app-cpufreq ├── Makefile ├── luasrc │ ├── controller │ │ └── cpufreq.lua │ └── model │ │ └── cbi │ │ └── cpufreq.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── cpufreq.po └── root │ ├── etc │ ├── config │ │ └── cpufreq │ ├── init.d │ │ └── cpufreq │ └── uci-defaults │ │ └── cpufreq │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cpufreq.json ├── luci-app-cpulimit ├── Makefile ├── luasrc │ ├── controller │ │ └── cpulimit.lua │ └── model │ │ └── cbi │ │ └── cpulimit.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── cpulimit.po └── root │ ├── etc │ ├── config │ │ └── cpulimit │ ├── init.d │ │ └── cpulimit │ └── uci-defaults │ │ └── luci-app-cpulimit │ └── usr │ ├── bin │ └── cpulimit.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-cpulimit.json ├── luci-app-cupsd ├── Makefile ├── luasrc │ ├── controller │ │ └── cupsd.lua │ └── model │ │ └── cbi │ │ └── cupsd │ │ ├── page1.lua │ │ └── page2.lua └── root │ ├── etc │ ├── config │ │ └── cupsd │ └── uci-defaults │ │ └── luci-cupsd │ ├── usr │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-cupsd.json │ └── www │ └── cups.pdf ├── luci-app-dawn ├── Makefile ├── luasrc │ ├── controller │ │ └── dawn.lua │ ├── model │ │ └── cbi │ │ │ └── dawn │ │ │ ├── dawn_hearing_map.lua │ │ │ └── dawn_network.lua │ └── tools │ │ └── ieee80211.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── dawn.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-dawn.json ├── luci-app-ddnsto ├── Makefile ├── luasrc │ ├── controller │ │ └── ddnsto.lua │ ├── model │ │ └── cbi │ │ │ └── ddnsto.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── ddnsto.htm │ │ └── ddnsto_status.htm ├── po │ ├── zh-cn │ │ └── ddnsto.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-ddnsto ├── luci-app-diskman ├── Makefile ├── luasrc │ ├── controller │ │ └── diskman.lua │ ├── model │ │ ├── cbi │ │ │ └── diskman │ │ │ │ ├── btrfs.lua │ │ │ │ ├── disks.lua │ │ │ │ └── partition.lua │ │ └── diskman.lua │ └── view │ │ └── diskman │ │ ├── cbi │ │ ├── disabled_button.htm │ │ ├── format_button.htm │ │ ├── inlinebutton.htm │ │ ├── xnullsection.htm │ │ └── xsimpleform.htm │ │ ├── disk_info.htm │ │ ├── partition_info.htm │ │ └── smart_detail.htm └── po │ ├── zh-cn │ └── zh_Hans │ └── diskman.po ├── luci-app-dnscrypt-proxy2 ├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── files │ ├── dnscrypt-proxy.config │ ├── dnscrypt-proxy.init │ ├── dnscrypt-proxy_resolvers.init │ ├── luci-app-dnscrypt-proxy2.json │ ├── luci │ ├── controller │ │ └── dnscrypt-proxy.lua │ ├── i18n │ │ └── dnscrypt-proxy.zh-cn.po │ ├── model │ │ └── cbi │ │ │ └── dnscrypt-proxy │ │ │ ├── dnscrypt-proxy-acl.lua │ │ │ ├── dnscrypt-proxy.lua │ │ │ ├── dnscrypt-resolvers-config.lua │ │ │ ├── dnscrypt-resolvers.lua │ │ │ ├── global.lua │ │ │ └── logview.lua │ ├── tools │ │ └── dnscrypt.lua │ └── view │ │ └── dnscrypt-proxy │ │ ├── cbi_addserver.htm │ │ ├── cfgselection.htm │ │ ├── logsview.htm │ │ ├── refresh.htm │ │ └── resolve.htm │ ├── public-resolvers.config │ └── root │ └── etc │ └── uci-defaults │ └── dnscrypt-proxy ├── luci-app-dnsfilter ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── dnsfilter.lua │ ├── model │ │ └── cbi │ │ │ └── dnsfilter │ │ │ ├── base.lua │ │ │ ├── black.lua │ │ │ ├── ip.lua │ │ │ ├── log.lua │ │ │ └── white.lua │ └── view │ │ └── dnsfilter │ │ ├── dnsfilter_refresh.htm │ │ └── dnsfilter_status.htm ├── po │ ├── zh-cn │ │ └── dnsfilter.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── dnsfilter │ ├── dnsfilter │ │ ├── black.list │ │ ├── ip.list │ │ └── white.list │ ├── init.d │ │ └── dnsfilter │ └── uci-defaults │ │ └── luci-dnsfilter │ └── usr │ ├── rpcd │ └── acl.d │ │ └── luci-app-dnsfilter.json │ └── share │ ├── dnsfilter │ ├── addown │ └── dnsfilter │ └── rpcd │ └── acl.d │ └── luci-app-dnsfilter.json ├── luci-app-dnsforwarder ├── Makefile ├── luasrc │ ├── controller │ │ └── dnsforwarder.lua │ └── model │ │ └── cbi │ │ └── dnsforwarder │ │ ├── general.lua │ │ └── log.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── luci-app-dnsforwarder.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-dnsforwarder.json ├── luci-app-dnsmasq-ipset ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── files │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── dnsmasq-ipset.js │ ├── luasrc │ │ └── controller │ │ │ └── dnsmasq-ipset.lua │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── dnsmasq-ipset │ │ ├── init.d │ │ │ └── dnsmasq-ipset │ │ └── uci-defaults │ │ │ └── luci-dnsmasq-ipset │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dnsmasq-ipset.json └── images │ └── screenshot.png ├── luci-app-docker ├── Makefile ├── luasrc │ ├── controller │ │ └── docker.lua │ ├── model │ │ └── cbi │ │ │ └── docker.lua │ └── view │ │ └── docker │ │ └── docker_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── docker.po └── root │ ├── etc │ ├── config │ │ └── docker │ ├── docker-init │ ├── docker-web │ ├── docker │ │ └── daemon.json │ ├── init.d │ │ └── docker │ └── uci-defaults │ │ └── docker │ ├── usr │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-docker.json │ └── www │ └── DockerReadme.pdf ├── luci-app-dockerman ├── Makefile ├── depends.lst ├── htdocs │ └── luci-static │ │ └── resources │ │ └── dockerman │ │ ├── containers.svg │ │ ├── file-icon.png │ │ ├── file-manager.css │ │ ├── folder-icon.png │ │ ├── images.svg │ │ ├── link-icon.png │ │ ├── networks.svg │ │ ├── tar.min.js │ │ └── volumes.svg ├── luasrc │ ├── controller │ │ └── dockerman.lua │ ├── model │ │ ├── cbi │ │ │ └── dockerman │ │ │ │ ├── configuration.lua │ │ │ │ ├── container.lua │ │ │ │ ├── containers.lua │ │ │ │ ├── images.lua │ │ │ │ ├── networks.lua │ │ │ │ ├── newcontainer.lua │ │ │ │ ├── newnetwork.lua │ │ │ │ ├── overview.lua │ │ │ │ └── volumes.lua │ │ └── docker.lua │ └── view │ │ └── dockerman │ │ ├── apply_widget.htm │ │ ├── cbi │ │ ├── inlinebutton.htm │ │ ├── inlinevalue.htm │ │ ├── namedsection.htm │ │ └── xfvalue.htm │ │ ├── container.htm │ │ ├── container_console.htm │ │ ├── container_file_manager.htm │ │ ├── container_stats.htm │ │ ├── containers_running_stats.htm │ │ ├── images_import.htm │ │ ├── images_load.htm │ │ ├── logs.htm │ │ ├── newcontainer_resolve.htm │ │ ├── overview.htm │ │ └── volume_size.htm ├── po │ ├── templates │ │ └── dockerman.pot │ ├── zh-cn │ │ └── dockerman.po │ └── zh_Hans ├── postinst └── root │ ├── etc │ ├── init.d │ │ └── dockerman │ └── uci-defaults │ │ └── luci-app-dockerman │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-dockerman.json ├── luci-app-easymesh ├── Makefile ├── luasrc │ ├── controller │ │ └── easymesh.lua │ └── model │ │ └── cbi │ │ └── easymesh.lua ├── po │ ├── zh-cn │ │ └── easymesh.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── easymesh │ ├── init.d │ │ └── easymesh │ └── uci-defaults │ │ └── luci-easymesh │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-easymesh.json ├── luci-app-easyupdate ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── easyupdate.lua │ ├── model │ │ └── cbi │ │ │ └── easyupdate.lua │ └── view │ │ └── easyupdate │ │ └── button.htm ├── po │ ├── zh-cn │ │ └── easyupdate.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── easyupdate │ └── uci-defaults │ │ └── luci-app-easyupdate │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-easyupdate.json ├── luci-app-eqos ├── Makefile ├── luasrc │ ├── controller │ │ └── eqos.lua │ └── model │ │ └── cbi │ │ └── eqos.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── eqos.po └── root │ ├── etc │ ├── config │ │ └── eqos │ ├── hotplug.d │ │ └── iface │ │ │ └── 10-eqos │ ├── init.d │ │ └── eqos │ └── uci-defaults │ │ └── luci-eqos │ └── usr │ ├── sbin │ └── eqos │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-eqos.json ├── luci-app-familycloud ├── Makefile ├── luasrc │ ├── controller │ │ └── familycloud.lua │ ├── model │ │ └── cbi │ │ │ ├── familycloud.lua │ │ │ └── familycloudlog.lua │ └── view │ │ └── familycloud │ │ └── familycloud_status.htm └── root │ ├── etc │ ├── config │ │ └── familycloud │ ├── init.d │ │ └── familycloud │ ├── ppp │ │ └── ip-up.d │ │ │ └── familycloud.sh │ └── uci-defaults │ │ └── familycloud │ └── usr │ └── share │ ├── familycloud │ ├── CloudDisk │ │ ├── config.ini │ │ ├── speedup.sh │ │ ├── speedup_router.sh │ │ └── utils.sh │ └── FamilyCloud │ │ ├── config.ini │ │ ├── config.json │ │ ├── speedup.sh │ │ ├── speedup_router.sh │ │ └── utils.sh │ └── rpcd │ └── acl.d │ └── luci-app-familycloud.json ├── luci-app-fileassistant ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── fileassistant │ │ ├── fb.css │ │ ├── fb.js │ │ ├── file-icon.png │ │ ├── folder-icon.png │ │ └── link-icon.png ├── luasrc │ ├── controller │ │ └── fileassistant.lua │ └── view │ │ └── fileassistant.htm └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-fileassistant.json ├── luci-app-filebrowser ├── Makefile ├── luasrc │ ├── controller │ │ └── filebrowser.lua │ ├── model │ │ └── cbi │ │ │ └── filebrowser.lua │ └── view │ │ └── filebrowser │ │ └── filebrowser_status.htm └── root │ ├── etc │ └── uci-defaults │ │ └── luci-filebrowser │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-filebrowser.json ├── luci-app-filetransfer ├── Makefile ├── luasrc │ ├── controller │ │ └── filetransfer.lua │ ├── model │ │ └── cbi │ │ │ └── updownload.lua │ └── view │ │ └── cbi │ │ ├── other_button.htm │ │ ├── other_download.htm │ │ ├── other_dvalue.htm │ │ └── other_upload.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── filetransfer.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-filetransfer.json ├── luci-app-frpc ├── Makefile ├── luasrc │ ├── controller │ │ └── frp.lua │ ├── model │ │ └── cbi │ │ │ └── frp │ │ │ ├── basic.lua │ │ │ └── config.lua │ └── view │ │ └── frp │ │ └── frp_status.htm ├── po │ ├── zh-cn │ │ └── frp.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── frp │ ├── init.d │ │ └── frp │ └── uci-defaults │ │ └── luci-frp │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-frpc.json ├── luci-app-frps ├── Makefile ├── luasrc │ ├── controller │ │ └── frps.lua │ ├── model │ │ └── cbi │ │ │ └── frps │ │ │ ├── common.lua │ │ │ └── server.lua │ └── view │ │ └── frps │ │ └── frps_status.htm ├── po │ ├── zh-cn │ │ └── frps.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── frps │ ├── init.d │ │ └── frps │ └── uci-defaults │ │ └── 40_luci-frps │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-frps.json ├── luci-app-go-aliyundrive-webdav ├── Makefile ├── luasrc │ ├── controller │ │ └── go-aliyundrive-webdav.lua │ ├── model │ │ └── cbi │ │ │ └── go-aliyundrive-webdav │ │ │ ├── client.lua │ │ │ └── log.lua │ └── view │ │ └── go-aliyundrive-webdav │ │ ├── go-aliyundrive-webdav_log.htm │ │ └── go-aliyundrive-webdav_status.htm ├── po │ ├── zh-cn │ │ └── go-aliyundrive-webdav.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── luci-go-aliyundrive-webdav │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-go-aliyundrive-webdav.json ├── luci-app-gost ├── Makefile ├── luasrc │ ├── controller │ │ └── gost.lua │ ├── model │ │ └── cbi │ │ │ └── gost.lua │ └── view │ │ └── gost │ │ └── gost_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── gost.po └── root │ ├── etc │ └── uci-defaults │ │ └── gost │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-gost.json ├── luci-app-gowebdav ├── Makefile ├── luasrc │ ├── controller │ │ └── gowebdav.lua │ ├── model │ │ └── cbi │ │ │ └── gowebdav.lua │ └── view │ │ └── gowebdav │ │ └── gowebdav_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── gowebdav.po └── root │ ├── etc │ └── uci-defaults │ │ └── gowebdav │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-gowebdav.json ├── luci-app-gpsysupgrade ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── gpsysupgrade.lua │ ├── model │ │ └── cbi │ │ │ └── gpsysupgrade │ │ │ ├── api.lua │ │ │ └── sysupgrade.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ ├── links.htm │ │ │ └── sysupgrade.htm │ │ └── gpsysupgrade │ │ └── system_version.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── gpsysupgrade.po └── root │ └── etc │ ├── init.d │ └── packages │ └── uci-defaults │ └── luci-gpsysupgrade ├── luci-app-guest-wifi ├── Makefile ├── luasrc │ ├── controller │ │ └── guest-wifi.lua │ └── model │ │ └── cbi │ │ └── guest-wifi.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ ├── guest-wifi.po │ │ └── luci-app-guest-wifi.po └── root │ ├── etc │ ├── config │ │ └── guest-wifi │ ├── init.d │ │ └── guest-wifi │ └── uci-defaults │ │ └── luci-app-guest-wifi │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-guest-wifi.json ├── luci-app-haproxy-tcp ├── Makefile ├── luasrc │ ├── controller │ │ └── haproxy.lua │ └── model │ │ └── cbi │ │ └── haproxy.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── luci-app-haproxy-tcp.po └── root │ ├── etc │ ├── config │ │ └── haproxy │ ├── haproxy_init.sh │ ├── haproxy_start │ └── uci-defaults │ │ └── z99-haproxy │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-haproxy-tcp.json ├── luci-app-homebridge ├── Makefile ├── README.md └── files │ ├── luci │ ├── controller │ │ └── homebridge.lua │ ├── model │ │ └── cbi │ │ │ └── homebridge │ │ │ ├── accessories.lua │ │ │ ├── accessory-config.lua │ │ │ ├── general.lua │ │ │ ├── platform-config.lua │ │ │ └── platforms.lua │ └── view │ │ └── homebridge │ │ ├── logview.htm │ │ ├── platform_list.htm │ │ ├── process_status.htm │ │ └── status.htm │ └── root │ ├── etc │ ├── config │ │ └── homebridge │ ├── init.d │ │ └── homebridge │ └── uci-defaults │ │ └── luci-homebridge │ └── usr │ └── share │ └── homebridge │ ├── gen_config.lua │ ├── process_status.sh │ ├── remove_folder.lua │ └── setup.sh ├── luci-app-ikoolproxy ├── Makefile ├── README.md ├── development.doc ├── luasrc │ ├── controller │ │ └── koolproxy.lua │ ├── model │ │ └── cbi │ │ │ └── koolproxy │ │ │ ├── add_rule.lua │ │ │ ├── basic.lua │ │ │ ├── black_list.lua │ │ │ ├── cert.lua │ │ │ ├── control.lua │ │ │ ├── custom_rule.lua │ │ │ ├── ip_black_list.lua │ │ │ ├── ip_white_list.lua │ │ │ ├── rss_rule.lua │ │ │ ├── tips.lua │ │ │ ├── update_log.lua │ │ │ └── white_list.lua │ └── view │ │ └── koolproxy │ │ ├── cadvalue.htm │ │ ├── caupload.htm │ │ ├── koolproxy_status.htm │ │ └── tips.htm ├── root │ ├── etc │ │ ├── adblocklist │ │ │ ├── adblock │ │ │ ├── adblockip │ │ │ ├── adbypass │ │ │ └── adbypassip │ │ ├── config │ │ │ └── koolproxy │ │ ├── init.d │ │ │ └── koolproxy │ │ └── uci-defaults │ │ │ └── luci-koolproxy │ ├── lib │ │ └── upgrade │ │ │ └── keep.d │ │ │ └── koolproxy │ └── usr │ │ ├── sbin │ │ └── adblockplus │ │ └── share │ │ ├── koolproxy │ │ ├── adblock.conf │ │ ├── camanagement │ │ ├── data │ │ │ ├── gen_ca.sh │ │ │ ├── openssl.cnf │ │ │ ├── rules │ │ │ │ └── user.txt │ │ │ ├── source.list │ │ │ └── user.txt │ │ ├── dnsmasq.adblock │ │ ├── koolproxy_ipset.conf │ │ └── kpupdate │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ikoolproxy.json ├── rulesupdate.log └── update.log ├── luci-app-iperf ├── Makefile ├── luasrc │ ├── controller │ │ └── iperf.lua │ └── view │ │ └── iperf │ │ └── test.htm ├── po │ ├── de │ │ ├── iperf.po │ │ └── iperf.po~ │ ├── fr │ │ ├── iperf.po │ │ └── iperf.po~ │ ├── it │ │ ├── iperf.po │ │ └── iperf.po~ │ ├── oc │ │ ├── iperf.po │ │ └── iperf.po~ │ ├── ru │ │ └── iperf.po │ ├── templates │ │ └── iperf.pot │ ├── zh-cn │ └── zh_Hans │ │ ├── iperf.po │ │ └── iperf.po~ └── root │ ├── etc │ └── config │ │ └── iperf │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-iperf.json │ └── rpcd │ └── acl.d │ └── luci-app-iperf.json ├── luci-app-ipsec-server ├── Makefile ├── luasrc │ ├── controller │ │ └── ipsec-server.lua │ ├── model │ │ └── cbi │ │ │ └── ipsec-server │ │ │ ├── online.lua │ │ │ ├── settings.lua │ │ │ └── users.lua │ └── view │ │ └── ipsec-server │ │ └── index.htm ├── po │ ├── zh-cn │ │ └── ipsec.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── luci-app-ipsec-server │ ├── init.d │ │ └── luci-app-ipsec-server │ └── uci-defaults │ │ └── luci-app-ipsec-server │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ipsec-server.json ├── luci-app-ipsec-vpnd ├── Makefile ├── luasrc │ ├── controller │ │ └── ipsec-server.lua │ ├── model │ │ └── cbi │ │ │ └── ipsec-server │ │ │ └── ipsec-server.lua │ └── view │ │ └── ipsec │ │ └── ipsec_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ ├── ipsec.po │ │ └── luci-app-ipsec-vpnd.po └── root │ ├── etc │ ├── config │ │ └── ipsec │ ├── init.d │ │ └── ipsec │ ├── ipsec.include │ └── uci-defaults │ │ └── luci-ipsec │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ipsec-vpnd.json ├── luci-app-ipsec-vpnserver-manyusers ├── Makefile ├── luasrc │ ├── controller │ │ └── ipsec-server.lua │ ├── model │ │ └── cbi │ │ │ └── ipsec-server │ │ │ ├── settings.lua │ │ │ └── users.lua │ └── view │ │ └── ipsec-server │ │ ├── index.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ipsec.po └── root │ ├── etc │ ├── config │ │ └── ipsec │ ├── init.d │ │ └── ipsecvpn │ └── uci-defaults │ │ └── luci-app-ipsec-vpnserver-manyusers │ └── usr │ └── share │ ├── ipsecvpn │ └── firewall.include │ └── rpcd │ └── acl.d │ └── luci-app-ipsec-vpnserver-manyusers.json ├── luci-app-iptvhelper ├── Makefile ├── luasrc │ ├── controller │ │ └── iptvhelper.lua │ └── model │ │ └── cbi │ │ └── iptvhelper.lua ├── po │ ├── templates │ │ └── iptvhelper.pot │ ├── zh-cn │ └── zh_Hans │ │ └── iptvhelper.po └── root │ └── etc │ └── uci-defaults │ └── 40_iptvhelper ├── luci-app-jd-dailybonus ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug---.md │ │ └── bug_report.md │ └── workflows │ │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── jd-dailybonus.lua │ ├── model │ │ └── cbi │ │ │ └── jd-dailybonus │ │ │ ├── client.lua │ │ │ ├── log.lua │ │ │ └── script.lua │ └── view │ │ └── jd-dailybonus │ │ ├── cookie_tools.htm │ │ ├── log.htm │ │ └── update_service.htm └── root │ ├── etc │ ├── config │ │ └── jd-dailybonus │ ├── init.d │ │ └── jd-dailybonus │ └── uci-defaults │ │ └── luci-jd-dailybonus │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── jd-dailybonus │ └── usr │ ├── lib │ └── node │ │ └── request │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ ├── auth.js │ │ ├── cookies.js │ │ ├── getProxyFromURI.js │ │ ├── har.js │ │ ├── hawk.js │ │ ├── helpers.js │ │ ├── multipart.js │ │ ├── oauth.js │ │ ├── querystring.js │ │ ├── redirect.js │ │ └── tunnel.js │ │ ├── node_modules │ │ ├── .bin │ │ │ ├── sshpk-conv │ │ │ ├── sshpk-sign │ │ │ ├── sshpk-verify │ │ │ └── uuid │ │ ├── ajv │ │ │ ├── .tonic_example.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── ajv.bundle.js │ │ │ │ ├── ajv.min.js │ │ │ │ └── ajv.min.js.map │ │ │ ├── lib │ │ │ │ ├── ajv.d.ts │ │ │ │ ├── ajv.js │ │ │ │ ├── cache.js │ │ │ │ ├── compile │ │ │ │ │ ├── async.js │ │ │ │ │ ├── equal.js │ │ │ │ │ ├── error_classes.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolve.js │ │ │ │ │ ├── rules.js │ │ │ │ │ ├── schema_obj.js │ │ │ │ │ ├── ucs2length.js │ │ │ │ │ └── util.js │ │ │ │ ├── data.js │ │ │ │ ├── definition_schema.js │ │ │ │ ├── dot │ │ │ │ │ ├── _limit.jst │ │ │ │ │ ├── _limitItems.jst │ │ │ │ │ ├── _limitLength.jst │ │ │ │ │ ├── _limitProperties.jst │ │ │ │ │ ├── allOf.jst │ │ │ │ │ ├── anyOf.jst │ │ │ │ │ ├── coerce.def │ │ │ │ │ ├── comment.jst │ │ │ │ │ ├── const.jst │ │ │ │ │ ├── contains.jst │ │ │ │ │ ├── custom.jst │ │ │ │ │ ├── defaults.def │ │ │ │ │ ├── definitions.def │ │ │ │ │ ├── dependencies.jst │ │ │ │ │ ├── enum.jst │ │ │ │ │ ├── errors.def │ │ │ │ │ ├── format.jst │ │ │ │ │ ├── if.jst │ │ │ │ │ ├── items.jst │ │ │ │ │ ├── missing.def │ │ │ │ │ ├── multipleOf.jst │ │ │ │ │ ├── not.jst │ │ │ │ │ ├── oneOf.jst │ │ │ │ │ ├── pattern.jst │ │ │ │ │ ├── properties.jst │ │ │ │ │ ├── propertyNames.jst │ │ │ │ │ ├── ref.jst │ │ │ │ │ ├── required.jst │ │ │ │ │ ├── uniqueItems.jst │ │ │ │ │ └── validate.jst │ │ │ │ ├── dotjs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _limit.js │ │ │ │ │ ├── _limitItems.js │ │ │ │ │ ├── _limitLength.js │ │ │ │ │ ├── _limitProperties.js │ │ │ │ │ ├── allOf.js │ │ │ │ │ ├── anyOf.js │ │ │ │ │ ├── comment.js │ │ │ │ │ ├── const.js │ │ │ │ │ ├── contains.js │ │ │ │ │ ├── custom.js │ │ │ │ │ ├── dependencies.js │ │ │ │ │ ├── enum.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── if.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── items.js │ │ │ │ │ ├── multipleOf.js │ │ │ │ │ ├── not.js │ │ │ │ │ ├── oneOf.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── properties.js │ │ │ │ │ ├── propertyNames.js │ │ │ │ │ ├── ref.js │ │ │ │ │ ├── required.js │ │ │ │ │ ├── uniqueItems.js │ │ │ │ │ └── validate.js │ │ │ │ ├── keyword.js │ │ │ │ └── refs │ │ │ │ │ ├── data.json │ │ │ │ │ ├── json-schema-draft-04.json │ │ │ │ │ ├── json-schema-draft-06.json │ │ │ │ │ ├── json-schema-draft-07.json │ │ │ │ │ └── json-schema-secure.json │ │ │ ├── package.json │ │ │ └── scripts │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── bundle.js │ │ │ │ ├── compile-dots.js │ │ │ │ ├── info │ │ │ │ ├── prepare-tests │ │ │ │ ├── publish-built-version │ │ │ │ └── travis-gh-pages │ │ ├── asn1 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── ber │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── reader.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── writer.js │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── assert-plus │ │ │ ├── AUTHORS │ │ │ ├── CHANGES.md │ │ │ ├── README.md │ │ │ ├── assert.js │ │ │ └── package.json │ │ ├── asynckit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── abort.js │ │ │ │ ├── async.js │ │ │ │ ├── defer.js │ │ │ │ ├── iterate.js │ │ │ │ ├── readable_asynckit.js │ │ │ │ ├── readable_parallel.js │ │ │ │ ├── readable_serial.js │ │ │ │ ├── readable_serial_ordered.js │ │ │ │ ├── state.js │ │ │ │ ├── streamify.js │ │ │ │ └── terminator.js │ │ │ ├── package.json │ │ │ ├── parallel.js │ │ │ ├── serial.js │ │ │ ├── serialOrdered.js │ │ │ └── stream.js │ │ ├── aws-sign2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── aws4 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aws4.js │ │ │ ├── lru.js │ │ │ └── package.json │ │ ├── bcrypt-pbkdf │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── caseless │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── combined-stream │ │ │ ├── License │ │ │ ├── Readme.md │ │ │ ├── lib │ │ │ │ └── combined_stream.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── core-util-is │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── float.patch │ │ │ ├── lib │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── dashdash │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── etc │ │ │ │ └── dashdash.bash_completion.in │ │ │ ├── lib │ │ │ │ └── dashdash.js │ │ │ └── package.json │ │ ├── delayed-stream │ │ │ ├── .npmignore │ │ │ ├── License │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── lib │ │ │ │ └── delayed_stream.js │ │ │ └── package.json │ │ ├── ecc-jsbn │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── LICENSE-jsbn │ │ │ │ ├── ec.js │ │ │ │ └── sec.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── extend │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .jscs.json │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── extsprintf │ │ │ ├── .gitmodules │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.targ │ │ │ ├── README.md │ │ │ ├── jsl.node.conf │ │ │ ├── lib │ │ │ │ └── extsprintf.js │ │ │ └── package.json │ │ ├── fast-deep-equal │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── es6 │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── react.d.ts │ │ │ │ └── react.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── react.d.ts │ │ │ └── react.js │ │ ├── fast-json-stable-stringify │ │ │ ├── .eslintrc.yml │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── index.js │ │ │ │ └── test.json │ │ │ ├── example │ │ │ │ ├── key_cmp.js │ │ │ │ ├── nested.js │ │ │ │ ├── str.js │ │ │ │ └── value_cmp.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── cmp.js │ │ │ │ ├── nested.js │ │ │ │ ├── str.js │ │ │ │ └── to-json.js │ │ ├── forever-agent │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── form-data │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── README.md.bak │ │ │ ├── lib │ │ │ │ ├── browser.js │ │ │ │ ├── form_data.js │ │ │ │ └── populate.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── getpass │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── har-schema │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── afterRequest.json │ │ │ │ ├── beforeRequest.json │ │ │ │ ├── browser.json │ │ │ │ ├── cache.json │ │ │ │ ├── content.json │ │ │ │ ├── cookie.json │ │ │ │ ├── creator.json │ │ │ │ ├── entry.json │ │ │ │ ├── har.json │ │ │ │ ├── header.json │ │ │ │ ├── index.js │ │ │ │ ├── log.json │ │ │ │ ├── page.json │ │ │ │ ├── pageTimings.json │ │ │ │ ├── postData.json │ │ │ │ ├── query.json │ │ │ │ ├── request.json │ │ │ │ ├── response.json │ │ │ │ └── timings.json │ │ │ └── package.json │ │ ├── har-validator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── async.js │ │ │ │ ├── error.js │ │ │ │ └── promise.js │ │ │ └── package.json │ │ ├── http-signature │ │ │ ├── .dir-locals.el │ │ │ ├── .npmignore │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── http_signing.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── parser.js │ │ │ │ ├── signer.js │ │ │ │ ├── utils.js │ │ │ │ └── verify.js │ │ │ └── package.json │ │ ├── is-typedarray │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── isstream │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── isstream.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── jsbn │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example.html │ │ │ ├── example.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── json-schema-traverse │ │ │ ├── .eslintrc.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── spec │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── fixtures │ │ │ │ └── schema.js │ │ │ │ └── index.spec.js │ │ ├── json-schema │ │ │ ├── README.md │ │ │ ├── draft-00 │ │ │ │ ├── hyper-schema │ │ │ │ ├── json-ref │ │ │ │ ├── links │ │ │ │ └── schema │ │ │ ├── draft-01 │ │ │ │ ├── hyper-schema │ │ │ │ ├── json-ref │ │ │ │ ├── links │ │ │ │ └── schema │ │ │ ├── draft-02 │ │ │ │ ├── hyper-schema │ │ │ │ ├── json-ref │ │ │ │ ├── links │ │ │ │ └── schema │ │ │ ├── draft-03 │ │ │ │ ├── examples │ │ │ │ │ ├── address │ │ │ │ │ ├── calendar │ │ │ │ │ ├── card │ │ │ │ │ ├── geo │ │ │ │ │ └── interfaces │ │ │ │ ├── hyper-schema │ │ │ │ ├── json-ref │ │ │ │ ├── links │ │ │ │ └── schema │ │ │ ├── draft-04 │ │ │ │ ├── hyper-schema │ │ │ │ ├── links │ │ │ │ └── schema │ │ │ ├── draft-zyp-json-schema-03.xml │ │ │ ├── draft-zyp-json-schema-04.xml │ │ │ ├── lib │ │ │ │ ├── links.js │ │ │ │ └── validate.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── tests.js │ │ ├── json-stringify-safe │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── stringify.js │ │ │ └── test │ │ │ │ ├── mocha.opts │ │ │ │ └── stringify_test.js │ │ ├── jsprim │ │ │ ├── CHANGES.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── jsprim.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── oauth-sign │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── performance-now │ │ │ ├── .npmignore │ │ │ ├── .tm_properties │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── performance-now.js │ │ │ │ └── performance-now.js.map │ │ │ ├── license.txt │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── index.d.ts │ │ │ │ └── performance-now.coffee │ │ │ └── test │ │ │ │ ├── mocha.opts │ │ │ │ ├── performance-now.coffee │ │ │ │ ├── scripts.coffee │ │ │ │ └── scripts │ │ │ │ ├── delayed-call.coffee │ │ │ │ ├── delayed-require.coffee │ │ │ │ ├── difference.coffee │ │ │ │ └── initial-value.coffee │ │ ├── psl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── browserstack-logo.svg │ │ │ ├── data │ │ │ │ └── rules.json │ │ │ ├── dist │ │ │ │ ├── psl.js │ │ │ │ └── psl.min.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── punycode.es6.js │ │ │ └── punycode.js │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── sshpk │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── sshpk-conv │ │ │ │ ├── sshpk-sign │ │ │ │ └── sshpk-verify │ │ │ ├── lib │ │ │ │ ├── algs.js │ │ │ │ ├── certificate.js │ │ │ │ ├── dhe.js │ │ │ │ ├── ed-compat.js │ │ │ │ ├── errors.js │ │ │ │ ├── fingerprint.js │ │ │ │ ├── formats │ │ │ │ │ ├── auto.js │ │ │ │ │ ├── dnssec.js │ │ │ │ │ ├── openssh-cert.js │ │ │ │ │ ├── pem.js │ │ │ │ │ ├── pkcs1.js │ │ │ │ │ ├── pkcs8.js │ │ │ │ │ ├── putty.js │ │ │ │ │ ├── rfc4253.js │ │ │ │ │ ├── ssh-private.js │ │ │ │ │ ├── ssh.js │ │ │ │ │ ├── x509-pem.js │ │ │ │ │ └── x509.js │ │ │ │ ├── identity.js │ │ │ │ ├── index.js │ │ │ │ ├── key.js │ │ │ │ ├── private-key.js │ │ │ │ ├── signature.js │ │ │ │ ├── ssh-buffer.js │ │ │ │ └── utils.js │ │ │ ├── man │ │ │ │ └── man1 │ │ │ │ │ ├── sshpk-conv.1 │ │ │ │ │ ├── sshpk-sign.1 │ │ │ │ │ └── sshpk-verify.1 │ │ │ └── package.json │ │ ├── tough-cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── cookie.js │ │ │ │ ├── memstore.js │ │ │ │ ├── pathMatch.js │ │ │ │ ├── permuteDomain.js │ │ │ │ ├── pubsuffix-psl.js │ │ │ │ ├── store.js │ │ │ │ └── version.js │ │ │ └── package.json │ │ ├── tunnel-agent │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── tweetnacl │ │ │ ├── .npmignore │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── nacl-fast.js │ │ │ ├── nacl-fast.min.js │ │ │ ├── nacl.d.ts │ │ │ ├── nacl.js │ │ │ ├── nacl.min.js │ │ │ └── package.json │ │ ├── uri-js │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── es5 │ │ │ │ │ ├── uri.all.d.ts │ │ │ │ │ ├── uri.all.js │ │ │ │ │ ├── uri.all.js.map │ │ │ │ │ ├── uri.all.min.d.ts │ │ │ │ │ ├── uri.all.min.js │ │ │ │ │ └── uri.all.min.js.map │ │ │ │ └── esnext │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── regexps-iri.d.ts │ │ │ │ │ ├── regexps-iri.js │ │ │ │ │ ├── regexps-iri.js.map │ │ │ │ │ ├── regexps-uri.d.ts │ │ │ │ │ ├── regexps-uri.js │ │ │ │ │ ├── regexps-uri.js.map │ │ │ │ │ ├── schemes │ │ │ │ │ ├── http.d.ts │ │ │ │ │ ├── http.js │ │ │ │ │ ├── http.js.map │ │ │ │ │ ├── https.d.ts │ │ │ │ │ ├── https.js │ │ │ │ │ ├── https.js.map │ │ │ │ │ ├── mailto.d.ts │ │ │ │ │ ├── mailto.js │ │ │ │ │ ├── mailto.js.map │ │ │ │ │ ├── urn-uuid.d.ts │ │ │ │ │ ├── urn-uuid.js │ │ │ │ │ ├── urn-uuid.js.map │ │ │ │ │ ├── urn.d.ts │ │ │ │ │ ├── urn.js │ │ │ │ │ └── urn.js.map │ │ │ │ │ ├── uri.d.ts │ │ │ │ │ ├── uri.js │ │ │ │ │ ├── uri.js.map │ │ │ │ │ ├── util.d.ts │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── punycode.d.ts │ │ │ │ ├── regexps-iri.ts │ │ │ │ ├── regexps-uri.ts │ │ │ │ ├── schemes │ │ │ │ │ ├── http.ts │ │ │ │ │ ├── https.ts │ │ │ │ │ ├── mailto.ts │ │ │ │ │ ├── urn-uuid.ts │ │ │ │ │ └── urn.ts │ │ │ │ ├── uri.ts │ │ │ │ └── util.ts │ │ │ ├── tests │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ ├── test-es5-min.html │ │ │ │ ├── test-es5.html │ │ │ │ └── tests.js │ │ │ ├── tsconfig.json │ │ │ └── yarn.lock │ │ ├── uuid │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── uuid │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── bytesToUuid.js │ │ │ │ ├── md5-browser.js │ │ │ │ ├── md5.js │ │ │ │ ├── rng-browser.js │ │ │ │ ├── rng.js │ │ │ │ ├── sha1-browser.js │ │ │ │ ├── sha1.js │ │ │ │ └── v35.js │ │ │ ├── package.json │ │ │ ├── v1.js │ │ │ ├── v3.js │ │ │ ├── v4.js │ │ │ └── v5.js │ │ └── verror │ │ │ ├── .npmignore │ │ │ ├── CHANGES.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── verror.js │ │ │ └── package.json │ │ ├── package.json │ │ └── request.js │ └── share │ ├── jd-dailybonus │ ├── JD_DailyBonus.js │ ├── gen_cookieset.lua │ └── newapp.sh │ └── rpcd │ └── acl.d │ └── luci-jd-dailybonus.json ├── luci-app-kcptun ├── Makefile ├── luasrc │ ├── controller │ │ └── kcptun.lua │ ├── model │ │ ├── cbi │ │ │ └── kcptun │ │ │ │ ├── servers-detail.lua │ │ │ │ ├── servers.lua │ │ │ │ └── settings.lua │ │ └── kcptun.lua │ └── view │ │ └── kcptun │ │ ├── log_view.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── kcptun.po └── root │ ├── etc │ ├── config │ │ └── kcptun │ ├── init.d │ │ └── kcptun │ └── uci-defaults │ │ └── 40_luci-kcptun │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-kcptun.json ├── luci-app-kodexplorer ├── Makefile ├── luasrc │ ├── controller │ │ └── kodexplorer.lua │ ├── model │ │ └── cbi │ │ │ └── kodexplorer │ │ │ ├── api.lua │ │ │ └── settings.lua │ └── view │ │ └── kodexplorer │ │ ├── download.htm │ │ ├── status.htm │ │ └── version.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── kodexplorer.po └── root │ ├── etc │ ├── config │ │ └── kodexplorer │ ├── init.d │ │ └── kodexplorer │ └── uci-defaults │ │ └── luci-app-kodexplorer │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-kodexplorer.json ├── luci-app-ledtrig-rssi ├── Makefile └── htdocs │ └── luci-static │ └── resources │ └── view │ └── system │ └── led-trigger │ └── rssi.js ├── luci-app-ledtrig-switch ├── Makefile └── htdocs │ └── luci-static │ └── resources │ └── view │ └── system │ └── led-trigger │ ├── switch0.js │ └── switch1.js ├── luci-app-ledtrig-usbport ├── Makefile └── htdocs │ └── luci-static │ └── resources │ └── view │ └── system │ └── led-trigger │ └── usbport.js ├── luci-app-linkease ├── Makefile ├── luasrc │ ├── controller │ │ └── linkease.lua │ ├── model │ │ └── cbi │ │ │ └── linkease.lua │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── linkease.htm │ │ └── linkease_status.htm ├── po │ ├── zh-cn │ │ └── linkease.po │ └── zh_Hans └── root │ └── etc │ └── uci-defaults │ └── 50_luci-linkease ├── luci-app-macvlan ├── Makefile ├── files │ ├── luci │ │ ├── controller │ │ │ └── macvlan.lua │ │ ├── i18n │ │ │ └── macvlan.zh-cn.po │ │ └── model │ │ │ └── cbi │ │ │ └── macvlan │ │ │ └── macvlan.lua │ └── root │ │ └── etc │ │ ├── config │ │ └── macvlan │ │ ├── init.d │ │ └── macvlan │ │ └── uci-defaults │ │ └── 40_luci-app-macvlan └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-macvlan.json ├── luci-app-mentohust ├── .gitignore ├── Makefile ├── README.md └── files │ ├── luci │ ├── controller │ │ └── mentohust.lua │ ├── i18n │ │ └── mentohust.zh-cn.po │ └── model │ │ └── cbi │ │ └── mentohust │ │ ├── general.lua │ │ └── log.lua │ └── root │ └── etc │ ├── config │ └── mentohust │ └── init.d │ └── mentohust ├── luci-app-minieap ├── .gitignore ├── Makefile ├── README.md └── files │ ├── luci │ ├── controller │ │ └── minieap.lua │ ├── i18n │ │ └── minieap.zh-cn.po │ └── model │ │ └── cbi │ │ └── minieap │ │ ├── customfile.lua │ │ ├── general.lua │ │ └── log.lua │ └── root │ ├── etc │ ├── config │ │ └── minieap │ └── init.d │ │ └── minieap │ └── usr │ └── sbin │ ├── minieap-conver │ └── minieap-ping ├── luci-app-mosdns ├── Makefile ├── luasrc │ ├── controller │ │ └── mosdns.lua │ ├── model │ │ └── cbi │ │ │ └── mosdns │ │ │ ├── basic.lua │ │ │ ├── config.lua │ │ │ └── update.lua │ └── view │ │ └── mosdns │ │ └── mosdns_status.htm ├── po │ ├── zh-cn │ │ └── mosdns.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── mosdns │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-mosdns │ ├── init.d │ │ └── mosdns │ ├── mosdns │ │ ├── config.yaml │ │ ├── dns0.sh │ │ ├── dns1.sh │ │ ├── geoip.dat │ │ ├── geosite.dat │ │ └── mosupdater.sh │ └── uci-defaults │ │ └── luci-mosdns │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-mosdns.json ├── luci-app-mtwifi ├── Makefile ├── luasrc │ ├── controller │ │ └── mtkwifi.lua │ └── view │ │ └── admin_mtk │ │ ├── mtk_wifi_apcli.htm │ │ ├── mtk_wifi_dev_cfg.htm │ │ ├── mtk_wifi_overview.htm │ │ └── mtk_wifi_vif_cfg.htm └── root │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── mtwifi │ ├── sbin │ └── mtkwifi │ └── usr │ ├── lib │ └── lua │ │ └── mtkwifi.lua │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-mtwifi.json ├── luci-app-music-remote-center ├── Makefile ├── luasrc │ ├── controller │ │ └── forked-daapd.lua │ ├── model │ │ └── cbi │ │ │ └── forked-daapd.lua │ └── view │ │ └── forked-daapd │ │ └── forked-daapd_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── forked-daapd.po └── root │ ├── etc │ ├── config │ │ └── forked-daapd │ ├── init.d │ │ └── forked-daapd │ └── uci-defaults │ │ └── forked-daapd │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-music-remote-center.json ├── luci-app-mwan3helper ├── Makefile ├── luasrc │ ├── controller │ │ └── mwan3helper.lua │ ├── model │ │ └── cbi │ │ │ └── mwan3helper │ │ │ ├── client.lua │ │ │ └── list.lua │ └── view │ │ └── mwan3helper │ │ └── mwan3helper_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── mwan3helper.po └── root │ ├── etc │ ├── config │ │ └── mwan3helper │ ├── init.d │ │ └── mwan3helper │ ├── mwan3helper │ │ ├── all_cn.txt │ │ ├── cernet.txt │ │ ├── chinatelecom.txt │ │ ├── cmcc.txt │ │ ├── crtc.txt │ │ ├── genipset.sh │ │ ├── gfw.txt │ │ ├── gwbn.txt │ │ ├── othernet.txt │ │ └── unicom_cnc.txt │ └── uci-defaults │ │ └── mwan3helper │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-mwan3helper.json ├── luci-app-mwol ├── Makefile ├── luasrc │ ├── controller │ │ └── mwol.lua │ └── model │ │ └── cbi │ │ └── mwol.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── mwol.po └── root │ ├── etc │ └── uci-defaults │ │ └── 40_luci-mwol │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-mwol.json ├── luci-app-n2n_v2 ├── Makefile ├── luasrc │ ├── controller │ │ └── n2n_v2.lua │ ├── model │ │ └── cbi │ │ │ └── n2n_v2.lua │ └── view │ │ └── n2n_v2 │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ ├── luci-app-n2n_v2.po │ │ └── n2n_v2.po └── root │ ├── etc │ └── uci-defaults │ │ └── luci-n2n_v2 │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-n2n_v2.json ├── luci-app-naiveproxy ├── Makefile ├── luasrc │ ├── controller │ │ └── naiveproxy.lua │ ├── model │ │ └── cbi │ │ │ └── naiveproxy.lua │ └── view │ │ └── naiveproxy │ │ └── naiveproxy_status.htm ├── po │ ├── en │ │ └── naiveproxy.po │ ├── zh-cn │ └── zh_Hans │ │ └── naiveproxy.po └── root │ ├── etc │ └── uci-defaults │ │ └── naiveproxy │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-naiveproxy.json ├── luci-app-netdata ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── netdata.lua │ ├── model │ │ └── cgi │ │ │ └── netdate.lua │ └── view │ │ └── netdata.htm ├── po │ ├── zh-cn │ │ └── netdata.po │ └── zh_Hans ├── readme.txt ├── root │ ├── etc │ │ ├── netdata │ │ │ ├── apps_groups.conf │ │ │ ├── ebpf.conf │ │ │ ├── exporting.conf │ │ │ ├── netdata.conf │ │ │ └── stream.conf │ │ └── uci-defaults │ │ │ └── 40_luci-app-netdata │ └── usr │ │ └── share │ │ ├── netdata │ │ └── webcn │ │ │ ├── dashboard.js │ │ │ ├── dashboard_info.js │ │ │ ├── index.html │ │ │ └── main.js │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-netdata.json └── web │ ├── dashboard.js │ ├── dashboard_info.js │ ├── index.html │ └── main.js ├── luci-app-netkeeper-interception ├── Makefile ├── luasrc │ ├── controller │ │ └── netkeeper-interception.lua │ ├── model │ │ └── cbi │ │ │ └── netkeeper-interception.lua │ └── view │ │ └── netkeeper-interception │ │ ├── netkeeper-interception_authreq.htm │ │ └── netkeeper-interception_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── netkeeper-interception.po └── root │ ├── etc │ └── uci-defaults │ │ └── 40_luci-app-netkeeper-interception │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-netkeeper-interception.json ├── luci-app-netspeedtest ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── netspeedtest.lua │ ├── model │ │ └── cbi │ │ │ └── netspeedtest │ │ │ └── netspeedtest.lua │ └── view │ │ └── netspeedtest │ │ ├── log.htm │ │ ├── netspeedtest.htm │ │ └── speedtest.htm ├── po │ ├── zh-cn │ │ └── netspeedtest.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── netspeedtest │ ├── init.d │ │ ├── netspeedtest │ │ └── speedtest │ └── uci-defaults │ │ └── 40_luci-app-netspeedtest │ └── usr │ └── share │ ├── netspeedtest │ └── netspeedtest.txt │ └── rpcd │ └── acl.d │ └── luci-app-netspeedtest.json ├── luci-app-nfs ├── Makefile ├── luasrc │ ├── controller │ │ └── nfs.lua │ └── model │ │ └── cbi │ │ └── nfs.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── nfs.po └── root │ ├── etc │ ├── config │ │ └── nfs │ ├── init.d │ │ └── nfs │ └── uci-defaults │ │ └── nfs │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nfs.json ├── luci-app-nft-qos ├── Makefile ├── luasrc │ ├── controller │ │ └── nft-qos.lua │ ├── model │ │ └── cbi │ │ │ └── nft-qos │ │ │ └── nft-qos.lua │ └── view │ │ └── nft-qos │ │ └── rate.htm ├── po │ ├── ar │ │ └── nft-qos.po │ ├── bg │ │ └── nft-qos.po │ ├── bn_BD │ │ └── nft-qos.po │ ├── ca │ │ └── nft-qos.po │ ├── cs │ │ └── nft-qos.po │ ├── da │ │ └── nft-qos.po │ ├── de │ │ └── nft-qos.po │ ├── el │ │ └── nft-qos.po │ ├── en │ │ └── nft-qos.po │ ├── es │ │ └── nft-qos.po │ ├── fi │ │ └── nft-qos.po │ ├── fr │ │ └── nft-qos.po │ ├── he │ │ └── nft-qos.po │ ├── hi │ │ └── nft-qos.po │ ├── hu │ │ └── nft-qos.po │ ├── it │ │ └── nft-qos.po │ ├── ja │ │ └── nft-qos.po │ ├── ko │ │ └── nft-qos.po │ ├── mr │ │ └── nft-qos.po │ ├── ms │ │ └── nft-qos.po │ ├── nb_NO │ │ └── nft-qos.po │ ├── pl │ │ └── nft-qos.po │ ├── pt │ │ └── nft-qos.po │ ├── pt_BR │ │ └── nft-qos.po │ ├── ro │ │ └── nft-qos.po │ ├── ru │ │ └── nft-qos.po │ ├── sk │ │ └── nft-qos.po │ ├── sv │ │ └── nft-qos.po │ ├── templates │ │ └── nft-qos.pot │ ├── tr │ │ └── nft-qos.po │ ├── uk │ │ └── nft-qos.po │ ├── vi │ │ └── nft-qos.po │ ├── zh-cn │ ├── zh_Hans │ │ └── nft-qos.po │ └── zh_Hant │ │ └── nft-qos.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nft-qos.json ├── luci-app-nginx-manager ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── nginx-manager.lua │ ├── model │ │ └── cbi │ │ │ └── nginx-manager.lua │ └── view │ │ └── nginx-manager │ │ └── index.htm ├── po │ ├── zh-cn │ │ └── nginx-manager.po │ └── zh_Hans └── root │ ├── etc │ ├── nginx │ │ └── conf.d │ │ │ └── templates │ └── uci-defaults │ │ └── luci-app-nginx-manager │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nginx-manager.json ├── luci-app-nginx-pingos ├── Makefile ├── luasrc │ ├── controller │ │ └── pingos.lua │ ├── model │ │ └── cbi │ │ │ └── pingos.lua │ └── view │ │ └── pingos │ │ └── status.htm ├── modules │ ├── nginx-client-module │ │ ├── COPYRIGHT │ │ ├── config │ │ ├── ngx_client.c │ │ ├── ngx_client.h │ │ ├── ngx_http_client.c │ │ ├── ngx_http_client.h │ │ └── t │ │ │ ├── config │ │ │ ├── nginx.conf │ │ │ ├── ngx_client_stat_module.c │ │ │ ├── ngx_client_test_module.c │ │ │ ├── ngx_http_client_test_module.c │ │ │ └── tcpserver.go │ ├── nginx-multiport-module │ │ ├── COPYRIGHT │ │ ├── README.md │ │ ├── config │ │ ├── doc │ │ │ ├── ngx-http-broadcast-module.md │ │ │ └── ngx-stream-zone-module.md │ │ ├── ngx_event_multiport_module.c │ │ ├── ngx_http_broadcast_module.c │ │ ├── ngx_http_inner_proxy_module.c │ │ ├── ngx_multiport.h │ │ ├── ngx_multiport_misc.c │ │ ├── ngx_process_slot_module.c │ │ ├── ngx_stream_zone_module.c │ │ ├── ngx_stream_zone_module.h │ │ └── t │ │ │ ├── config │ │ │ ├── nginx.conf │ │ │ ├── ngx_multiport_test_module.c │ │ │ ├── ngx_stream_zone_test_module.c │ │ │ └── ngx_test_macro.h │ ├── nginx-rtmp-module │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── config │ │ ├── dash │ │ │ ├── ngx_rtmp_dash_module.c │ │ │ ├── ngx_rtmp_mp4.c │ │ │ └── ngx_rtmp_mp4.h │ │ ├── hls │ │ │ ├── ngx_rtmp_hls_module.c │ │ │ ├── ngx_rtmp_mpegts.c │ │ │ └── ngx_rtmp_mpegts.h │ │ ├── http │ │ │ ├── ngx_http_flv_live_module.c │ │ │ ├── ngx_http_set_header.c │ │ │ └── ngx_http_set_header.h │ │ ├── mpegts │ │ │ ├── ngx_hls_http_module.c │ │ │ ├── ngx_hls_live_module.c │ │ │ ├── ngx_hls_live_module.h │ │ │ ├── ngx_mpegts_gop_module.c │ │ │ ├── ngx_mpegts_gop_module.h │ │ │ ├── ngx_mpegts_http_module.c │ │ │ ├── ngx_mpegts_live_module.c │ │ │ └── ngx_mpegts_live_module.h │ │ ├── ngx_live.c │ │ ├── ngx_live.h │ │ ├── ngx_live_record.c │ │ ├── ngx_live_record.h │ │ ├── ngx_live_relay.c │ │ ├── ngx_live_relay.h │ │ ├── ngx_live_relay_httpflv.c │ │ ├── ngx_live_relay_inner.c │ │ ├── ngx_live_relay_rtmp.c │ │ ├── ngx_live_relay_simple.c │ │ ├── ngx_live_relay_static.c │ │ ├── ngx_netcall.c │ │ ├── ngx_netcall.h │ │ ├── ngx_rtmp.c │ │ ├── ngx_rtmp.h │ │ ├── ngx_rtmp_access_module.c │ │ ├── ngx_rtmp_amf.c │ │ ├── ngx_rtmp_amf.h │ │ ├── ngx_rtmp_bandwidth.c │ │ ├── ngx_rtmp_bandwidth.h │ │ ├── ngx_rtmp_bitop.c │ │ ├── ngx_rtmp_bitop.h │ │ ├── ngx_rtmp_cmd_module.c │ │ ├── ngx_rtmp_cmd_module.h │ │ ├── ngx_rtmp_codec_module.c │ │ ├── ngx_rtmp_codec_module.h │ │ ├── ngx_rtmp_control_module.c │ │ ├── ngx_rtmp_core_module.c │ │ ├── ngx_rtmp_dynamic.c │ │ ├── ngx_rtmp_dynamic.h │ │ ├── ngx_rtmp_eval.c │ │ ├── ngx_rtmp_eval.h │ │ ├── ngx_rtmp_exec_module.c │ │ ├── ngx_rtmp_gop_module.c │ │ ├── ngx_rtmp_handler.c │ │ ├── ngx_rtmp_handshake.c │ │ ├── ngx_rtmp_init.c │ │ ├── ngx_rtmp_limit_module.c │ │ ├── ngx_rtmp_live_module.c │ │ ├── ngx_rtmp_live_module.h │ │ ├── ngx_rtmp_log_module.c │ │ ├── ngx_rtmp_monitor_module.c │ │ ├── ngx_rtmp_monitor_module.h │ │ ├── ngx_rtmp_notify_module.c │ │ ├── ngx_rtmp_notify_module.h │ │ ├── ngx_rtmp_proxy_protocol.c │ │ ├── ngx_rtmp_proxy_protocol.h │ │ ├── ngx_rtmp_receive.c │ │ ├── ngx_rtmp_record_module.c │ │ ├── ngx_rtmp_record_module.h │ │ ├── ngx_rtmp_send.c │ │ ├── ngx_rtmp_shared_module.c │ │ ├── ngx_rtmp_stat_module.c │ │ ├── ngx_rtmp_streams.h │ │ ├── ngx_rtmp_sys_stat_module.c │ │ ├── ngx_rtmp_variables.c │ │ ├── ngx_rtmp_variables.h │ │ └── ngx_rtmp_version.h │ ├── nginx-toolkit-module │ │ ├── COPYRIGHT │ │ ├── README.md │ │ ├── config │ │ ├── doc │ │ │ ├── ngx-dynamic-conf-module.md │ │ │ ├── ngx-dynamic-resolver-module.md │ │ │ ├── ngx-event-resolver-module.md │ │ │ ├── ngx-event-timer-module.md │ │ │ ├── ngx-map.md │ │ │ ├── ngx-poold.md │ │ │ ├── ngx-rbuf.md │ │ │ └── ngx-toolkit-misc.md │ │ ├── ngx_dynamic_conf.c │ │ ├── ngx_dynamic_conf.h │ │ ├── ngx_dynamic_resolver.c │ │ ├── ngx_dynamic_resolver.h │ │ ├── ngx_event_resolver.c │ │ ├── ngx_event_resolver.h │ │ ├── ngx_event_timer_module.c │ │ ├── ngx_event_timer_module.h │ │ ├── ngx_http_dynamic.c │ │ ├── ngx_http_dynamic.h │ │ ├── ngx_http_trace_module.c │ │ ├── ngx_map.c │ │ ├── ngx_map.h │ │ ├── ngx_poold.c │ │ ├── ngx_poold.h │ │ ├── ngx_rbuf.c │ │ ├── ngx_rbuf.h │ │ ├── ngx_timerd.c │ │ ├── ngx_timerd.h │ │ ├── ngx_toolkit_misc.c │ │ ├── ngx_toolkit_misc.h │ │ └── t │ │ │ ├── config │ │ │ ├── dns_install.sh │ │ │ ├── md5testfile │ │ │ ├── named.conf │ │ │ ├── nginx.conf │ │ │ ├── nginx_dynamic.conf │ │ │ ├── ngx_dynamic_conf_test_module.c │ │ │ ├── ngx_dynamic_resolver_test_module.c │ │ │ ├── ngx_event_resolver_test_module.c │ │ │ ├── ngx_event_timer_test_module.c │ │ │ ├── ngx_http_dynamic_test_module.c │ │ │ ├── ngx_map_test_module.c │ │ │ ├── ngx_poold_test_module.c │ │ │ ├── ngx_rbuf_test_module.c │ │ │ ├── ngx_test_macro.h │ │ │ ├── ngx_timerd_test_module.c │ │ │ ├── ngx_toolkit_misc_test_module.c │ │ │ ├── test.com.zone │ │ │ └── test1.com.zone │ └── nginx-ts-module │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── config │ │ └── src │ │ ├── ngx_http_ts_module.c │ │ ├── ngx_stream_ts_module.c │ │ ├── ngx_ts_aac.c │ │ ├── ngx_ts_aac.h │ │ ├── ngx_ts_avc.c │ │ ├── ngx_ts_avc.h │ │ ├── ngx_ts_dash.c │ │ ├── ngx_ts_dash.h │ │ ├── ngx_ts_dash_mp4.c │ │ ├── ngx_ts_hls.c │ │ ├── ngx_ts_hls.h │ │ ├── ngx_ts_stream.c │ │ └── ngx_ts_stream.h ├── patches │ ├── 101-feature_test_fix.patch │ ├── 102-sizeof_test_fix.patch │ ├── 103-sys_nerr.patch │ ├── 104-endianness_fix.patch │ ├── 200-config.patch │ └── 201-ignore-invalid-options.patch ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── pingos.po └── root │ ├── etc │ ├── config │ │ └── pingos │ ├── init.d │ │ └── pingos │ ├── pingos.template │ └── uci-defaults │ │ └── luci-app-nginx-pingos │ ├── resource │ ├── conf-template │ │ └── nginx.conf │ ├── crossdomain.xml │ └── stat.xsl │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nginx-pingos.json ├── luci-app-ngrokc ├── Makefile ├── luasrc │ ├── controller │ │ └── ngrokc.lua │ ├── model │ │ └── cbi │ │ │ └── ngrokc │ │ │ ├── detail.lua │ │ │ └── overview.lua │ └── view │ │ └── ngrokc │ │ ├── ngrokc_script.htm │ │ ├── overview_enabled.htm │ │ └── overview_value.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ngrokc.zh-cn.po └── root │ ├── etc │ ├── config │ │ └── ngrokc │ ├── init.d │ │ └── ngrokc │ └── uci-defaults │ │ └── luci-app-ngrokc │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ngrokc.json ├── luci-app-njitclient ├── Makefile ├── luasrc │ ├── controller │ │ └── njitclient.lua │ └── model │ │ └── cbi │ │ └── njitclient.lua └── root │ ├── etc │ ├── config │ │ └── njitclient │ └── init.d │ │ └── njitclient │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-njitclient.json ├── luci-app-nps ├── Makefile ├── luasrc │ ├── controller │ │ └── nps.lua │ ├── model │ │ └── cbi │ │ │ └── nps.lua │ └── view │ │ └── nps │ │ └── nps_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── nps.po └── root │ ├── etc │ ├── config │ │ └── nps │ ├── init.d │ │ └── nps │ └── uci-defaults │ │ └── luci-nps │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-nps.json ├── luci-app-oaf ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── echarts.min.js ├── luasrc │ ├── controller │ │ └── appfilter.lua │ ├── model │ │ └── cbi │ │ │ └── appfilter │ │ │ ├── appfilter.lua │ │ │ └── dev_status.lua │ └── view │ │ ├── admin_network │ │ ├── dev_status.htm │ │ └── user_status.htm │ │ └── cbi │ │ ├── oaf_dvalue.htm │ │ └── oaf_upload.htm ├── po │ ├── zh-cn │ │ └── oaf.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ ├── 91_luci-oaf │ │ └── 92_add_user_section │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-oaf.json ├── luci-app-oled ├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── oled.lua │ ├── model │ │ └── cbi │ │ │ └── oled │ │ │ └── setting.lua │ └── view │ │ └── oled │ │ └── status.htm ├── po │ ├── zh-cn │ ├── zh_Hans │ │ └── oled.po │ └── zh_Hant │ │ └── oled.po ├── root │ ├── etc │ │ ├── config │ │ │ └── oled │ │ ├── init.d │ │ │ └── oled │ │ └── uci-defaults │ │ │ └── oled │ └── usr │ │ ├── sbin │ │ └── netspeed │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-oled.json └── src │ ├── Example_Code │ ├── Main.c │ ├── example_app.c │ └── example_app.h │ ├── I2C_Library │ ├── I2C.c │ └── I2C.h │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── SSD1306_OLED_Library │ ├── SSD1306_OLED.c │ ├── SSD1306_OLED.h │ └── gfxfont.h ├── luci-app-onliner ├── .gitattributes ├── .gitignore ├── Makefile ├── luasrc │ ├── controller │ │ └── onliner.lua │ └── view │ │ └── onliner │ │ ├── display.htm │ │ └── onliner.htm ├── readme.md └── root │ └── usr │ └── share │ └── onliner │ └── setnlbw.sh ├── luci-app-openclash ├── Makefile ├── luasrc │ ├── controller │ │ └── openclash.lua │ ├── model │ │ └── cbi │ │ │ └── openclash │ │ │ ├── client.lua │ │ │ ├── config-subscribe-edit.lua │ │ │ ├── config-subscribe.lua │ │ │ ├── config.lua │ │ │ ├── game-rules-file-manage.lua │ │ │ ├── game-rules-manage.lua │ │ │ ├── groups-config.lua │ │ │ ├── log.lua │ │ │ ├── other-rules-edit.lua │ │ │ ├── proxy-provider-config.lua │ │ │ ├── proxy-provider-file-manage.lua │ │ │ ├── rule-providers-config.lua │ │ │ ├── rule-providers-file-manage.lua │ │ │ ├── rule-providers-manage.lua │ │ │ ├── rule-providers-settings.lua │ │ │ ├── servers-config.lua │ │ │ ├── servers.lua │ │ │ └── settings.lua │ ├── openclash.lua │ └── view │ │ └── openclash │ │ ├── cfg_check.htm │ │ ├── config_editor.htm │ │ ├── debug.htm │ │ ├── developer.htm │ │ ├── dler_login.htm │ │ ├── dlercloud.htm │ │ ├── download_rule.htm │ │ ├── download_stream_domains.htm │ │ ├── dvalue.htm │ │ ├── log.htm │ │ ├── myip.htm │ │ ├── other_button.htm │ │ ├── ping.htm │ │ ├── server_list.htm │ │ ├── server_url.htm │ │ ├── status.htm │ │ ├── switch_mode.htm │ │ ├── toolbar_show.htm │ │ ├── update.htm │ │ └── upload.htm ├── po │ ├── zh-cn │ │ └── openclash.zh-cn.po │ └── zh_Hans ├── root │ ├── etc │ │ ├── config │ │ │ └── openclash │ │ ├── init.d │ │ │ └── openclash │ │ ├── openclash │ │ │ ├── Country.mmdb │ │ │ ├── china_ip6_route.ipset │ │ │ ├── china_ip_route.ipset │ │ │ ├── custom │ │ │ │ ├── openclash_custom_domain_dns.list │ │ │ │ ├── openclash_custom_domain_dns_policy.list │ │ │ │ ├── openclash_custom_fake_filter.list │ │ │ │ ├── openclash_custom_fallback_filter.yaml │ │ │ │ ├── openclash_custom_hosts.list │ │ │ │ ├── openclash_custom_netflix_domains.list │ │ │ │ ├── openclash_custom_rules.list │ │ │ │ └── openclash_custom_rules_2.list │ │ │ ├── game_rules │ │ │ │ ├── CS-GO.rules │ │ │ │ ├── Monster-Hunter-World.rules │ │ │ │ └── Steam.rules │ │ │ └── rule_provider │ │ │ │ ├── ABC │ │ │ │ ├── Abema_TV │ │ │ │ ├── Amazon │ │ │ │ ├── Apple │ │ │ │ ├── Apple_News │ │ │ │ ├── Apple_TV │ │ │ │ ├── BBC_iPlayer │ │ │ │ ├── Bahamut │ │ │ │ ├── Bilibili │ │ │ │ ├── China.yaml │ │ │ │ ├── ChinaIP.yaml │ │ │ │ ├── DAZN │ │ │ │ ├── Discovery_Plus │ │ │ │ ├── Disney_Plus │ │ │ │ ├── Domestic │ │ │ │ ├── Domestic_IPs │ │ │ │ ├── Fox+ │ │ │ │ ├── Fox_Now │ │ │ │ ├── Global.yaml │ │ │ │ ├── HBO │ │ │ │ ├── Hulu │ │ │ │ ├── Hulu_Japan │ │ │ │ ├── JOOX │ │ │ │ ├── Japonx │ │ │ │ ├── KKBOX │ │ │ │ ├── KKTV │ │ │ │ ├── LAN │ │ │ │ ├── Letv │ │ │ │ ├── Line_TV │ │ │ │ ├── Microsoft │ │ │ │ ├── Netease_Music │ │ │ │ ├── Netflix │ │ │ │ ├── PBS │ │ │ │ ├── Pandora │ │ │ │ ├── PayPal │ │ │ │ ├── Pornhub │ │ │ │ ├── Proxy │ │ │ │ ├── Reject │ │ │ │ ├── Scholar │ │ │ │ ├── Soundcloud │ │ │ │ ├── Special │ │ │ │ ├── Speedtest │ │ │ │ ├── Spotify │ │ │ │ ├── Steam │ │ │ │ ├── Streaming.yaml │ │ │ │ ├── StreamingSE.yaml │ │ │ │ ├── Telegram │ │ │ │ ├── Tencent_Video │ │ │ │ ├── Unbreak.yaml │ │ │ │ ├── ViuTV │ │ │ │ ├── WeTV │ │ │ │ ├── YouTube │ │ │ │ ├── Youku │ │ │ │ ├── encoreTVB │ │ │ │ ├── iQiyi │ │ │ │ └── myTV_SUPER │ │ └── uci-defaults │ │ │ └── luci-openclash │ ├── usr │ │ └── share │ │ │ ├── openclash │ │ │ ├── cfg_servers_address_fake_filter.sh │ │ │ ├── cfg_unused_servers_del.sh │ │ │ ├── clash_version.sh │ │ │ ├── dashboard │ │ │ │ ├── CNAME │ │ │ │ ├── assets │ │ │ │ │ ├── index.691b22e9.js │ │ │ │ │ ├── index.c7a648b5.css │ │ │ │ │ ├── logo.b453e72f.png │ │ │ │ │ └── vendor.743db77c.js │ │ │ │ ├── index.html │ │ │ │ ├── manifest.webmanifest │ │ │ │ ├── sw.js │ │ │ │ └── workbox-0c0655d9.js │ │ │ ├── log.sh │ │ │ ├── openclash.sh │ │ │ ├── openclash_chnroute.sh │ │ │ ├── openclash_core.sh │ │ │ ├── openclash_custom_domain_dns.sh │ │ │ ├── openclash_debug.sh │ │ │ ├── openclash_debug_getcon.lua │ │ │ ├── openclash_dler_checkin.lua │ │ │ ├── openclash_download_rule_list.sh │ │ │ ├── openclash_fake_filter.sh │ │ │ ├── openclash_get_network.lua │ │ │ ├── openclash_history_get.sh │ │ │ ├── openclash_ipdb.sh │ │ │ ├── openclash_ps.sh │ │ │ ├── openclash_rule.sh │ │ │ ├── openclash_streaming_unlock.lua │ │ │ ├── openclash_update.sh │ │ │ ├── openclash_version.sh │ │ │ ├── openclash_watchdog.sh │ │ │ ├── res │ │ │ │ ├── ConnersHua.yaml │ │ │ │ ├── ConnersHua_return.yaml │ │ │ │ ├── Disney_Plus_Domains.list │ │ │ │ ├── Netflix_Domains.list │ │ │ │ ├── default.yaml │ │ │ │ ├── game_rules.list │ │ │ │ ├── lhie1.yaml │ │ │ │ ├── openclash_version │ │ │ │ ├── rule_providers.list │ │ │ │ └── sub_ini.list │ │ │ ├── ruby.sh │ │ │ ├── yacd │ │ │ │ ├── CNAME │ │ │ │ ├── _headers │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── assets │ │ │ │ │ ├── Chart.min.44f6c6c6.js │ │ │ │ │ ├── Config.029b666f.js │ │ │ │ │ ├── Config.af7c0f33.css │ │ │ │ │ ├── Connections.52bc9670.js │ │ │ │ │ ├── Connections.9de0e2a6.css │ │ │ │ │ ├── Fab.200e0680.css │ │ │ │ │ ├── Fab.4dc9cb99.js │ │ │ │ │ ├── Logs.01e28256.js │ │ │ │ │ ├── Logs.8b54b7be.css │ │ │ │ │ ├── Proxies.71af777a.js │ │ │ │ │ ├── Proxies.831754de.css │ │ │ │ │ ├── Rules.a609ca62.css │ │ │ │ │ ├── Rules.b2ac0faa.js │ │ │ │ │ ├── Select.29a5a6ae.js │ │ │ │ │ ├── Select.9a98fc65.css │ │ │ │ │ ├── TextFitler.00e03ee5.css │ │ │ │ │ ├── TextFitler.cc7f7fa3.js │ │ │ │ │ ├── debounce.76599460.js │ │ │ │ │ ├── en.f1dd5536.js │ │ │ │ │ ├── index.9233837d.js │ │ │ │ │ ├── index.a628dc5e.css │ │ │ │ │ ├── index.ee5bc09a.js │ │ │ │ │ ├── index.esm.edbe839b.js │ │ │ │ │ ├── index.fe1062b5.js │ │ │ │ │ ├── logs.4dcb9935.js │ │ │ │ │ ├── open-sans-latin-400-normal.cce57747.woff2 │ │ │ │ │ ├── open-sans-latin-400-normal.d7410996.woff │ │ │ │ │ ├── open-sans-latin-700-normal.a61d6725.woff2 │ │ │ │ │ ├── open-sans-latin-700-normal.b1fda8d8.woff │ │ │ │ │ ├── roboto-mono-latin-400-normal.2dfc0e86.woff │ │ │ │ │ ├── roboto-mono-latin-400-normal.e1fd013a.woff2 │ │ │ │ │ ├── useRemainingViewPortHeight.7baef998.js │ │ │ │ │ ├── vendor.38e754a4.js │ │ │ │ │ └── zh.247ad8fa.js │ │ │ │ ├── index.html │ │ │ │ ├── manifest.webmanifest │ │ │ │ ├── registerSW.js │ │ │ │ ├── sw.js │ │ │ │ ├── yacd-128.png │ │ │ │ ├── yacd-64.png │ │ │ │ └── yacd.ico │ │ │ ├── yml_change.sh │ │ │ ├── yml_groups_get.sh │ │ │ ├── yml_groups_name_ch.sh │ │ │ ├── yml_groups_name_get.sh │ │ │ ├── yml_groups_set.sh │ │ │ ├── yml_proxys_get.sh │ │ │ ├── yml_proxys_set.sh │ │ │ └── yml_rules_change.sh │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-openclash.json │ └── www │ │ └── luci-static │ │ └── resources │ │ └── openclash │ │ ├── addon │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ └── dialog.js │ │ ├── display │ │ │ ├── autorefresh.js │ │ │ ├── fullscreen.css │ │ │ └── fullscreen.js │ │ ├── edit │ │ │ └── matchbrackets.js │ │ ├── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ │ ├── lint │ │ │ ├── js-yaml.min.js │ │ │ ├── lint.css │ │ │ ├── lint.js │ │ │ └── yaml-lint.js │ │ ├── scroll │ │ │ └── annotatescrollbar.js │ │ ├── search │ │ │ ├── jump-to-line.js │ │ │ ├── match-highlighter.js │ │ │ ├── matchesonscrollbar.css │ │ │ ├── matchesonscrollbar.js │ │ │ ├── search.js │ │ │ └── searchcursor.js │ │ └── selection │ │ │ └── active-line.js │ │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ │ ├── mode │ │ ├── lua │ │ │ └── lua.js │ │ └── yaml │ │ │ └── yaml.js │ │ └── theme │ │ ├── idea.css │ │ └── material.css └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-openvpn-server ├── Makefile ├── luasrc │ ├── controller │ │ └── openvpn-server.lua │ ├── model │ │ └── cbi │ │ │ └── openvpn-server │ │ │ ├── base.lua │ │ │ ├── client.lua │ │ │ ├── passwd.lua │ │ │ └── vars.lua │ └── view │ │ └── openvpn-server │ │ ├── log.htm │ │ └── openvpn_status.htm ├── po │ ├── zh-cn │ │ └── openvpn-server.po │ └── zh_Hans └── root │ ├── acl.d │ └── luci-app-openvpn-server.json │ ├── etc │ ├── config │ │ └── openvpn │ ├── openvpn │ │ ├── ovpnadd │ │ │ └── ovpnadd.conf │ │ └── server │ │ │ └── psw-file │ └── uci-defaults │ │ └── openvpn │ └── usr │ ├── checkpsw.sh │ ├── genovpn.sh │ ├── openvpncert.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-openvpn-server.json ├── luci-app-oscam ├── Makefile ├── luasrc │ ├── controller │ │ └── oscam.lua │ └── model │ │ └── cbi │ │ └── oscam.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── oscam.po └── root │ ├── etc │ ├── config │ │ └── oscam │ └── uci-defaults │ │ └── luci-oscam │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-oscam.json ├── luci-app-passwall ├── Makefile ├── luasrc │ ├── controller │ │ └── passwall.lua │ ├── model │ │ └── cbi │ │ │ └── passwall │ │ │ ├── api │ │ │ ├── api.lua │ │ │ ├── brook.lua │ │ │ ├── gen_hysteria.lua │ │ │ ├── gen_naiveproxy.lua │ │ │ ├── gen_shadowsocks.lua │ │ │ ├── gen_trojan.lua │ │ │ ├── gen_v2ray.lua │ │ │ ├── gen_v2ray_proto.lua │ │ │ ├── kcptun.lua │ │ │ ├── trojan_go.lua │ │ │ ├── v2ray.lua │ │ │ └── xray.lua │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── auto_switch.lua │ │ │ ├── global.lua │ │ │ ├── haproxy.lua │ │ │ ├── log.lua │ │ │ ├── node_config.lua │ │ │ ├── node_list.lua │ │ │ ├── node_subscribe.lua │ │ │ ├── node_subscribe_config.lua │ │ │ ├── other.lua │ │ │ ├── rule.lua │ │ │ ├── rule_list.lua │ │ │ └── shunt_rules.lua │ │ │ └── server │ │ │ ├── api │ │ │ ├── app.lua │ │ │ ├── hysteria.lua │ │ │ ├── shadowsocks.lua │ │ │ ├── trojan.lua │ │ │ └── v2ray.lua │ │ │ ├── index.lua │ │ │ └── user.lua │ └── view │ │ └── passwall │ │ ├── app_update │ │ ├── brook_version.htm │ │ ├── hysteria_version.htm │ │ ├── kcptun_version.htm │ │ ├── trojan_go_version.htm │ │ ├── v2ray_version.htm │ │ └── xray_version.htm │ │ ├── auto_switch │ │ └── footer.htm │ │ ├── global │ │ ├── footer.htm │ │ ├── status.htm │ │ ├── status2.htm │ │ └── tips.htm │ │ ├── haproxy │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── rule │ │ └── rule_version.htm │ │ └── server │ │ ├── log.htm │ │ └── users_list_status.htm ├── po │ ├── zh-cn │ │ └── passwall.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── passwall_server │ ├── init.d │ │ ├── passwall │ │ └── passwall_server │ └── uci-defaults │ │ └── luci-passwall │ └── usr │ └── share │ ├── passwall │ ├── 0_default_config │ ├── app.sh │ ├── helper_dnsmasq.sh │ ├── iptables.sh │ ├── monitor.sh │ ├── rule_update.lua │ ├── rules │ │ ├── block_host │ │ ├── block_ip │ │ ├── chnlist │ │ ├── chnroute │ │ ├── chnroute6 │ │ ├── direct_host │ │ ├── direct_ip │ │ ├── gfwlist │ │ ├── lanlist_ipv4 │ │ ├── lanlist_ipv6 │ │ ├── proxy_host │ │ └── proxy_ip │ ├── subscribe.lua │ └── test.sh │ └── rpcd │ └── acl.d │ └── luci-app-passwall.json ├── luci-app-poweroff ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── poweroff.lua │ └── view │ │ └── poweroff.htm └── po │ ├── zh-cn │ └── poweroff.po │ └── zh_Hans ├── luci-app-pppoe-relay ├── Makefile ├── luasrc │ ├── controller │ │ └── pppoe-relay.lua │ └── model │ │ └── cbi │ │ └── pppoe-relay.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── pppoe-relay.po └── root │ ├── etc │ ├── config │ │ └── pppoe-relay │ ├── init.d │ │ └── pppoe-relay │ └── uci-defaults │ │ └── luci-app-pppoe-relay │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-pppoe-relay.json ├── luci-app-pppoe-server ├── Makefile ├── luasrc │ ├── controller │ │ └── pppoe-server.lua │ ├── model │ │ └── cbi │ │ │ └── pppoe-server │ │ │ ├── online.lua │ │ │ ├── settings.lua │ │ │ └── users.lua │ └── view │ │ └── pppoe-server │ │ ├── index.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── pppoe-server.po └── root │ ├── etc │ ├── config │ │ └── pppoe-server │ ├── init.d │ │ └── pppoe-server │ └── uci-defaults │ │ └── luci-app-pppoe-server │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-pppoe-server.json ├── luci-app-pptp-server ├── Makefile ├── luasrc │ ├── controller │ │ └── pptp-server.lua │ ├── model │ │ └── cbi │ │ │ └── pptp-server.lua │ └── view │ │ └── pptp-server │ │ └── pptp-server_status.htm ├── po │ ├── zh-cn │ │ └── pptp.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── pptpd │ ├── pptpd.include │ └── uci-defaults │ │ └── luci-pptpd │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-pptp-server.json ├── luci-app-ps3netsrv ├── Makefile ├── luasrc │ ├── controller │ │ └── ps3netsrv.lua │ ├── model │ │ └── cbi │ │ │ └── ps3netsrv.lua │ └── view │ │ └── ps3netsrv │ │ └── ps3netsrv_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ps3netsrv.po └── root │ ├── etc │ └── uci-defaults │ │ └── ps3netsrv │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ps3netsrv.json ├── luci-app-pushbot ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── pushbot.lua │ ├── model │ │ └── cbi │ │ │ └── pushbot │ │ │ ├── advanced.lua │ │ │ ├── client.lua │ │ │ ├── log.lua │ │ │ └── setting.lua │ └── view │ │ └── pushbot │ │ ├── pushbot_log.htm │ │ └── pushbot_status.htm └── root │ ├── etc │ ├── config │ │ └── pushbot │ ├── init.d │ │ └── pushbot │ └── uci-defaults │ │ └── luci-pushbot │ └── usr │ ├── bin │ └── pushbot │ │ ├── api │ │ ├── bark.json │ │ ├── dingding.json │ │ ├── diy.json │ │ ├── ent_wechat.json │ │ ├── feishu.json │ │ ├── ip_blacklist │ │ ├── ipv4.list │ │ ├── ipv6.list │ │ └── pushplus.json │ │ └── pushbot │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-pushbot.json ├── luci-app-qbittorrent ├── Makefile ├── luasrc │ ├── controller │ │ └── qbittorrent.lua │ ├── model │ │ └── cbi │ │ │ └── qbittorrent.lua │ └── view │ │ └── qbittorrent │ │ └── qbittorrent_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── qbittorrent.po └── root │ ├── etc │ ├── config │ │ └── qbittorrent │ ├── init.d │ │ └── qbittorrent │ └── uci-defaults │ │ └── qbittorrent │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-qbittorrent.json ├── luci-app-ramfree ├── Makefile ├── luasrc │ └── controller │ │ └── release_ram.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── release_ram.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ramfree.json ├── luci-app-rclone ├── Makefile ├── luasrc │ ├── controller │ │ └── rclone.lua │ └── model │ │ └── cbi │ │ └── rclone.lua ├── po │ ├── en │ │ └── rclone.po │ ├── zh-cn │ └── zh_Hans │ │ └── luci-app-rclone.po └── root │ ├── etc │ └── uci-defaults │ │ └── 100_luci-rclone │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-rclone.json ├── luci-app-rtorrent ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── control │ ├── conffiles │ ├── control │ ├── postinst │ ├── preinst │ └── prerm ├── doc │ ├── lua-bencode_license │ ├── lua-xml-rpc_license │ └── luci-app-rtorrent_license └── src │ ├── etc │ ├── config │ │ └── rtorrent │ ├── luci-uploads │ │ └── rtorrent │ │ │ └── .placeholder │ └── uci-defaults │ │ └── rtorrent │ ├── usr │ └── lib │ │ └── lua │ │ ├── bencode.lua │ │ ├── luci │ │ ├── controller │ │ │ └── rtorrent.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── rtorrent │ │ │ │ ├── add.lua │ │ │ │ ├── array.lua │ │ │ │ ├── common.lua │ │ │ │ ├── download.lua │ │ │ │ ├── logger.lua │ │ │ │ ├── main.lua │ │ │ │ ├── rss-rule.lua │ │ │ │ ├── rss.lua │ │ │ │ ├── settings │ │ │ │ ├── frontend.lua │ │ │ │ ├── rss.lua │ │ │ │ └── rtorrent.lua │ │ │ │ ├── string.lua │ │ │ │ └── torrent │ │ │ │ ├── chunks.lua │ │ │ │ ├── files.lua │ │ │ │ ├── info.lua │ │ │ │ ├── peers.lua │ │ │ │ └── trackers.lua │ │ └── view │ │ │ └── rtorrent │ │ │ ├── dropdown.htm │ │ │ ├── dvalue.htm │ │ │ ├── map.htm │ │ │ ├── simpleform.htm │ │ │ ├── tblsection.htm │ │ │ ├── tblsection_main.htm │ │ │ ├── tvalue.htm │ │ │ ├── upload.htm │ │ │ └── value.htm │ │ ├── rss_downloader.lua │ │ ├── rtorrent.lua │ │ └── xmlrpc │ │ ├── init.lua │ │ └── scgi.lua │ └── www │ └── luci-static │ └── resources │ ├── icons │ ├── filetypes │ │ ├── 7z.png │ │ ├── ac3.png │ │ ├── app.png │ │ ├── archive.png │ │ ├── arj.png │ │ ├── avi.png │ │ ├── bat.png │ │ ├── bmp.png │ │ ├── bz2.png │ │ ├── c.png │ │ ├── cab.png │ │ ├── cgi.png │ │ ├── code.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── db.png │ │ ├── dir.png │ │ ├── doc.png │ │ ├── dts.png │ │ ├── elf.png │ │ ├── exe.png │ │ ├── f4v.png │ │ ├── file.png │ │ ├── flac.png │ │ ├── flash.png │ │ ├── flv.png │ │ ├── gif.png │ │ ├── gz.png │ │ ├── h.png │ │ ├── htm.png │ │ ├── html.png │ │ ├── image.png │ │ ├── iso.png │ │ ├── jar.png │ │ ├── java.png │ │ ├── jpeg.png │ │ ├── jpg.png │ │ ├── linux.png │ │ ├── lua.png │ │ ├── mkv.png │ │ ├── mov.png │ │ ├── mp3.png │ │ ├── mp4.png │ │ ├── music.png │ │ ├── nfo.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── pl.png │ │ ├── png.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── rar.png │ │ ├── script.png │ │ ├── sh.png │ │ ├── sqlite.png │ │ ├── srt.png │ │ ├── tar.png │ │ ├── tgz.png │ │ ├── txt.png │ │ ├── up.png │ │ ├── video.png │ │ ├── wma.png │ │ ├── wmv.png │ │ ├── xls.png │ │ └── zip.png │ ├── home.png │ └── unknown_tracker.svg │ └── rtorrent.js ├── luci-app-scutclient ├── Makefile ├── luasrc │ ├── controller │ │ └── scutclient.lua │ ├── model │ │ └── cbi │ │ │ └── scutclient │ │ │ └── scutclient.lua │ └── view │ │ └── scutclient │ │ ├── about.htm │ │ ├── logs.htm │ │ └── status.htm └── root │ ├── etc │ └── uci-defaults │ │ └── 99-luci-scutclient │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-scutclient.json ├── luci-app-serverchan ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── serverchan.lua │ ├── model │ │ └── cbi │ │ │ └── serverchan │ │ │ ├── advanced.lua │ │ │ ├── client.lua │ │ │ ├── log.lua │ │ │ └── setting.lua │ └── view │ │ └── serverchan │ │ ├── serverchan_log.htm │ │ └── serverchan_status.htm └── root │ ├── etc │ ├── config │ │ └── serverchan │ ├── init.d │ │ └── serverchan │ └── uci-defaults │ │ └── luci-serverchan │ └── usr │ ├── bin │ └── serverchan │ │ ├── api │ │ ├── diy.json │ │ ├── ip_blacklist │ │ ├── ipv4.list │ │ ├── ipv6.list │ │ ├── logo.jpg │ │ ├── pushplus.json │ │ ├── qywx_markdown.json │ │ ├── qywx_mpnews.json │ │ ├── serverchan.json │ │ ├── telegram.json │ │ └── wxpusher.json │ │ └── serverchan │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-serverchan.json ├── luci-app-shortcutmenu ├── Makefile ├── luasrc │ ├── controller │ │ └── shortcutmenu.lua │ └── model │ │ └── cbi │ │ └── shortcutmenu.lua ├── po │ ├── zh-cn │ │ └── shortcutmenu.po │ └── zh_Hans └── root │ ├── etc │ └── config │ │ └── shortcutmenu │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-shortcutmenu.json ├── luci-app-siitwizard ├── Makefile ├── luasrc │ └── model │ │ └── cbi │ │ └── siitwizard.lua └── root │ ├── etc │ └── config │ │ └── siit │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-siitwizard.json │ └── rpcd │ └── acl.d │ └── luci-app-siitwizard.json ├── luci-app-sms-tool ├── LICENSE ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── icons │ │ └── delsms.png ├── luasrc │ ├── controller │ │ └── modem │ │ │ └── sms.lua │ ├── model │ │ └── cbi │ │ │ └── modem │ │ │ └── smsconfig.lua │ └── view │ │ └── modem │ │ ├── atcommands.htm │ │ ├── readsms.htm │ │ ├── sendsms.htm │ │ └── ussd.htm ├── po │ ├── pl │ │ └── sms-tool.po │ └── ru │ │ └── sms-tool.po └── root │ ├── etc │ ├── config │ │ ├── atcmds.user │ │ ├── phonebook.user │ │ ├── sms_tool │ │ └── ussd.user │ ├── init.d │ │ └── smsled │ └── uci-defaults │ │ ├── set_sms_ports.sh │ │ └── start-smsled │ ├── sbin │ ├── cronsync.sh │ ├── set_sms_ports.sh │ ├── smsled-init.sh │ └── smsled.sh │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-sms-tool.json ├── luci-app-snmpd ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── snmpd │ │ └── snmpd.js ├── po │ └── templates │ │ └── snmpd.pot └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-snmpd.json │ └── rpcd │ └── acl.d │ └── luci-app-snmpd.json ├── luci-app-socat ├── Makefile ├── luasrc │ ├── controller │ │ └── socat.lua │ ├── model │ │ └── cbi │ │ │ └── socat │ │ │ ├── config.lua │ │ │ └── index.lua │ └── view │ │ └── socat │ │ ├── list_status.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── socat.po └── root │ ├── etc │ ├── config │ │ └── socat │ ├── init.d │ │ └── socat │ └── uci-defaults │ │ └── luci-app-socat │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-socat.json ├── luci-app-softether ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── softether-status.js └── root │ └── usr │ ├── libexec │ └── vpncmd-call │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-softether.json │ └── rpcd │ └── acl.d │ └── luci-app-softether.json ├── luci-app-softethervpn ├── Makefile ├── luasrc │ ├── controller │ │ └── softethervpn.lua │ ├── model │ │ └── cbi │ │ │ └── softethervpn.lua │ └── view │ │ └── softethervpn │ │ ├── index.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── softethervpn.po └── root │ ├── etc │ ├── config │ │ └── softethervpn │ ├── init.d │ │ └── softethervpn │ └── uci-defaults │ │ └── luci-app-softethervpn │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-softethervpn.json │ └── softethervpn │ └── firewall.include ├── luci-app-speederv2 ├── Makefile ├── luasrc │ ├── controller │ │ └── speederv2.lua │ ├── model │ │ └── cbi │ │ │ └── speederv2 │ │ │ ├── general.lua │ │ │ ├── servers-details.lua │ │ │ └── servers.lua │ └── view │ │ └── speederv2 │ │ ├── dynamiclist.htm │ │ └── status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── speederv2.po └── root │ ├── etc │ ├── config │ │ └── speederv2 │ ├── init.d │ │ └── speederv2 │ └── uci-defaults │ │ └── luci-speederv2 │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-speederv2.json ├── luci-app-ssocks ├── Makefile ├── luasrc │ ├── controller │ │ └── ssocks.lua │ ├── model │ │ └── cbi │ │ │ └── ssocks.lua │ └── view │ │ └── ssocks │ │ └── ssocks_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ssocks.po └── root │ ├── etc │ ├── config │ │ ├── ssocks │ │ └── ssocks-authorization │ ├── init.d │ │ └── ssocks │ └── uci-defaults │ │ └── ssocks │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-ssocks.json ├── luci-app-ssr-libev-server ├── Makefile ├── luasrc │ ├── controller │ │ └── ssr_libev_server.lua │ ├── model │ │ └── cbi │ │ │ └── ssr_libev_server │ │ │ ├── config.lua │ │ │ └── index.lua │ └── view │ │ └── ssr_libev_server │ │ ├── users_list_status.htm │ │ └── users_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ssr_libev_server.po └── root │ ├── etc │ ├── config │ │ └── ssr_libev_server │ ├── init.d │ │ └── ssr_libev_server │ └── uci-defaults │ │ └── luci-app-ssr-libev-server │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-libev-server.json │ └── ssr_libev_server │ └── firewall.include ├── luci-app-ssr-mudb-server ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── vue.min.js ├── luasrc │ ├── controller │ │ └── ssr_mudb_server.lua │ ├── model │ │ └── cbi │ │ │ └── ssr_mudb_server │ │ │ └── index.lua │ └── view │ │ └── ssr_mudb_server │ │ ├── status.htm │ │ ├── user.htm │ │ └── users.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── ssr_mudb_server.po └── root │ ├── etc │ ├── config │ │ ├── ssr_mudb_server │ │ └── ssr_mudb_server.json │ ├── init.d │ │ └── ssr_mudb_server │ └── uci-defaults │ │ └── luci-app-ssr-mudb-server │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-mudb-server.json │ └── ssr_mudb_server │ ├── .travis.yml │ ├── CHANGES │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── MANIFEST.in │ ├── apiconfig.py │ ├── asyncmgr.py │ ├── clear_traffic_all_users.sh │ ├── config.json │ ├── configloader.py │ ├── db_transfer.py │ ├── firewall.lua │ ├── importloader.py │ ├── initcfg.bat │ ├── initcfg.sh │ ├── initmudbjson.sh │ ├── logrun.sh │ ├── mudb.json │ ├── mujson_mgr.py │ ├── mysql.json │ ├── run.sh │ ├── server.py │ ├── server_pool.py │ ├── setup.py │ ├── setup_cymysql.sh │ ├── shadowsocks │ ├── __init__.py │ ├── asyncdns.py │ ├── common.py │ ├── crypto │ │ ├── __init__.py │ │ ├── ctypes_libsodium.py │ │ ├── ctypes_openssl.py │ │ ├── openssl.py │ │ ├── rc4_md5.py │ │ ├── sodium.py │ │ ├── table.py │ │ └── util.py │ ├── daemon.py │ ├── encrypt.py │ ├── eventloop.py │ ├── local.py │ ├── logrun.sh │ ├── lru_cache.py │ ├── manager.py │ ├── obfs.py │ ├── obfsplugin │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── auth_chain.py │ │ ├── http_simple.py │ │ ├── obfs_tls.py │ │ ├── plain.py │ │ └── verify.py │ ├── ordereddict.py │ ├── run.sh │ ├── server.py │ ├── shell.py │ ├── stop.sh │ ├── tail.sh │ ├── tcprelay.py │ ├── udprelay.py │ ├── user.py │ └── version.py │ ├── stop.sh │ ├── switchrule.py │ ├── tail.sh │ ├── tests │ ├── aes-cfb1.json │ ├── aes-cfb8.json │ ├── aes-ctr.json │ ├── aes.json │ ├── assert.sh │ ├── chacha20.json │ ├── client-multi-server-ip.json │ ├── coverage_server.py │ ├── fastopen.json │ ├── ipv6-client-side.json │ ├── ipv6.json │ ├── jenkins.sh │ ├── libsodium │ │ └── install.sh │ ├── nose_plugin.py │ ├── rc4-md5.json │ ├── salsa20-ctr.json │ ├── salsa20.json │ ├── server-multi-passwd-client-side.json │ ├── server-multi-passwd-table.json │ ├── server-multi-passwd.json │ ├── server-multi-ports.json │ ├── setup_tc.sh │ ├── socksify │ │ ├── install.sh │ │ └── socks.conf │ ├── table.json │ ├── test.py │ ├── test_command.sh │ ├── test_daemon.sh │ ├── test_large_file.sh │ ├── test_udp_src.py │ ├── test_udp_src.sh │ └── workers.json │ ├── user-config.json │ ├── userapiconfig.py │ ├── usermysql.json │ └── utils │ ├── README.md │ ├── autoban.py │ └── fail2ban │ └── shadowsocks.conf ├── luci-app-ssr-plus ├── Makefile ├── luasrc │ ├── controller │ │ └── shadowsocksr.lua │ ├── model │ │ └── cbi │ │ │ └── shadowsocksr │ │ │ ├── advanced.lua │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── control.lua │ │ │ ├── log.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ └── status.lua │ └── view │ │ └── shadowsocksr │ │ ├── cache.htm │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── ping.htm │ │ ├── refresh.htm │ │ ├── reset.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── ssrurl.htm │ │ ├── status.htm │ │ └── subscribe.htm ├── po │ ├── zh-cn │ │ └── ssr-plus.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── shadowsocksr │ ├── init.d │ │ └── shadowsocksr │ ├── ssrplus │ │ ├── ad.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── deny.list │ │ ├── gfw_base.conf │ │ ├── gfw_list.conf │ │ ├── netflix.list │ │ ├── netflixip.list │ │ ├── oversea_list.conf │ │ └── white.list │ └── uci-defaults │ │ └── luci-ssr-plus │ └── usr │ ├── bin │ ├── ssr-monitor │ ├── ssr-rules │ └── ssr-switch │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-plus.json │ └── shadowsocksr │ ├── chinaipset.sh │ ├── gen_config.lua │ ├── genred2config.sh │ ├── gfw2ipset.sh │ ├── ssrplusupdate.sh │ ├── subscribe.lua │ └── update.lua ├── luci-app-ssrserver-python ├── Makefile ├── luasrc │ ├── controller │ │ └── ssrs.lua │ ├── model │ │ └── cbi │ │ │ └── ssrs.lua │ └── view │ │ └── ssrs │ │ └── ssrs_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ ├── luci-app-ssrserver-python.po │ │ └── ssrs.po └── root │ ├── etc │ ├── config │ │ └── ssrs │ ├── init.d │ │ └── ssrs │ └── uci-defaults │ │ └── luci-app-ssrs │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssrserver-python.json │ └── ssr │ ├── .travis.yml │ ├── CHANGES │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── README.rst │ ├── apiconfig.py │ ├── asyncmgr.py │ ├── config.json │ ├── configloader.py │ ├── db_transfer.py │ ├── debian │ ├── changelog │ ├── compat │ ├── config.json │ ├── control │ ├── copyright │ ├── docs │ ├── init.d │ ├── install │ ├── rules │ ├── shadowsocks.default │ ├── shadowsocks.manpages │ ├── source │ │ └── format │ ├── sslocal.1 │ └── ssserver.1 │ ├── importloader.py │ ├── initcfg.bat │ ├── initcfg.sh │ ├── initmudbjson.sh │ ├── logrun.sh │ ├── mudb.json │ ├── mujson_mgr.py │ ├── mysql.json │ ├── run.sh │ ├── server.py │ ├── server_pool.py │ ├── setup.py │ ├── setup_cymysql.sh │ ├── shadowsocks │ ├── __init__.py │ ├── asyncdns.py │ ├── common.py │ ├── crypto │ │ ├── __init__.py │ │ ├── ctypes_libsodium.py │ │ ├── ctypes_openssl.py │ │ ├── openssl.py │ │ ├── rc4_md5.py │ │ ├── sodium.py │ │ ├── table.py │ │ └── util.py │ ├── daemon.py │ ├── encrypt.py │ ├── encrypt_test.py │ ├── eventloop.py │ ├── local.py │ ├── logrun.sh │ ├── lru_cache.py │ ├── manager.py │ ├── obfs.py │ ├── obfsplugin │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── auth_chain.py │ │ ├── http_simple.py │ │ ├── obfs_tls.py │ │ ├── plain.py │ │ └── verify.py │ ├── ordereddict.py │ ├── run.sh │ ├── server.py │ ├── shell.py │ ├── stop.sh │ ├── tail.sh │ ├── tcprelay.py │ ├── udprelay.py │ └── version.py │ ├── stop.sh │ ├── switchrule.py │ ├── tail.sh │ ├── tests │ ├── aes-cfb1.json │ ├── aes-cfb8.json │ ├── aes-ctr.json │ ├── aes.json │ ├── assert.sh │ ├── chacha20.json │ ├── client-multi-server-ip.json │ ├── coverage_server.py │ ├── fastopen.json │ ├── ipv6-client-side.json │ ├── ipv6.json │ ├── jenkins.sh │ ├── libsodium │ │ └── install.sh │ ├── nose_plugin.py │ ├── rc4-md5.json │ ├── salsa20-ctr.json │ ├── salsa20.json │ ├── server-multi-passwd-client-side.json │ ├── server-multi-passwd-table.json │ ├── server-multi-passwd.json │ ├── server-multi-ports.json │ ├── setup_tc.sh │ ├── socksify │ │ ├── install.sh │ │ └── socks.conf │ ├── table.json │ ├── test.py │ ├── test_command.sh │ ├── test_daemon.sh │ ├── test_large_file.sh │ ├── test_udp_src.py │ ├── test_udp_src.sh │ └── workers.json │ └── utils │ ├── README.md │ ├── autoban.py │ └── fail2ban │ └── shadowsocks.conf ├── luci-app-store ├── API.md ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── store.lua │ └── view │ │ └── store │ │ └── main.htm ├── root │ ├── bin │ │ └── is-opkg │ └── etc │ │ ├── init.d │ │ └── istore │ │ └── uci-defaults │ │ └── luci-app-store └── src │ └── Makefile ├── luci-app-supervisord ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── supervisord.lua │ ├── model │ │ └── cbi │ │ │ └── supervisord.lua │ └── view │ │ └── supervisord │ │ ├── index.htm │ │ ├── list.htm │ │ ├── log.htm │ │ └── version.htm ├── po │ ├── zh-cn │ │ └── supervisord.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── supervisord │ ├── init.d │ │ └── supervisord │ ├── supervisord │ │ ├── program │ │ │ └── templates │ │ └── supervisord.conf │ └── uci-defaults │ │ └── luci-supervisord │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-supervisord.json ├── luci-app-syncdial ├── Makefile ├── luasrc │ ├── controller │ │ └── syncdial.lua │ ├── model │ │ └── cbi │ │ │ └── syncdial.lua │ └── view │ │ └── syncdial │ │ └── redial_button.htm └── root │ ├── bin │ └── genwancfg │ ├── etc │ ├── config │ │ └── syncdial │ ├── hotplug.d │ │ └── iface │ │ │ ├── 01-dialcheck │ │ │ └── 01-mvifcreate │ └── uci-defaults │ │ └── luci-syncdial │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-syncdial.json ├── luci-app-syncthing ├── Makefile ├── luasrc │ ├── controller │ │ └── syncthing.lua │ ├── model │ │ └── cbi │ │ │ └── syncthing.lua │ └── view │ │ └── syncthing │ │ └── syncthing_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── syncthing.po └── root │ ├── etc │ └── uci-defaults │ │ └── luci-syncthing │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-syncthing.json ├── luci-app-sysuh3c ├── Makefile ├── luasrc │ ├── controller │ │ └── sysuh3c.lua │ └── model │ │ └── cbi │ │ └── sysuh3c.lua └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-sysuh3c.json ├── luci-app-tencentcloud-cos ├── .gitignore ├── Makefile └── files │ └── root │ ├── etc │ ├── config │ │ └── cosclient │ ├── init.d │ │ └── cosclient │ ├── passwd-cosfs │ ├── uci-defaults │ │ └── cosclient │ └── uploadData │ └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── cosclient.lua │ └── model │ └── cbi │ └── cosclient.lua ├── luci-app-tencentddns ├── LICENSE ├── Makefile ├── files │ ├── luci │ │ ├── controller │ │ │ └── tencentddns.lua │ │ ├── i18n │ │ │ └── tencentddns.zh-cn.po │ │ └── model │ │ │ └── cbi │ │ │ └── tencentddns.lua │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── tencentddns │ │ ├── init.d │ │ │ └── tencentddns │ │ ├── tencentddnsupload │ │ └── uci-defaults │ │ │ └── luci-tencentddns │ │ └── usr │ │ └── sbin │ │ └── tencentddns └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-timecontrol ├── Makefile ├── luasrc │ ├── controller │ │ └── timecontrol.lua │ ├── model │ │ └── cbi │ │ │ └── timecontrol.lua │ └── view │ │ └── timecontrol │ │ ├── index.htm │ │ └── timecontrol.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── timecontrol.po └── root │ ├── etc │ ├── config │ │ └── timecontrol │ ├── init.d │ │ └── timecontrol │ └── uci-defaults │ │ └── luci-app-timecontrol │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-timecontrol.json ├── luci-app-timewol ├── Makefile ├── luasrc │ ├── controller │ │ └── timewol.lua │ ├── model │ │ └── cbi │ │ │ └── timewol.lua │ └── view │ │ └── timewol │ │ ├── index.htm │ │ └── timewol.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── timewol.po └── root │ ├── etc │ ├── config │ │ └── timewol │ ├── init.d │ │ └── timewol │ └── uci-defaults │ │ └── luci-app-control-timewol │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-timewol.json ├── luci-app-trojan-server ├── Makefile ├── luasrc │ ├── controller │ │ └── trojan_server.lua │ ├── model │ │ └── cbi │ │ │ └── trojan_server │ │ │ ├── api │ │ │ └── gen_trojan_config_file.lua │ │ │ ├── config.lua │ │ │ └── index.lua │ └── view │ │ └── trojan_server │ │ ├── log.htm │ │ ├── users_list_status.htm │ │ └── users_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── trojan_server.po └── root │ ├── etc │ ├── config │ │ └── trojan_server │ ├── init.d │ │ └── trojan_server │ └── uci-defaults │ │ └── luci-app-trojan-server │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-trojan-server.json │ └── trojan_server │ └── firewall.include ├── luci-app-ttnode ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── ttnode │ │ ├── jquery.min.js │ │ └── marked.min.js ├── luasrc │ ├── controller │ │ └── ttnode.lua │ ├── model │ │ └── cbi │ │ │ └── ttnode.lua │ └── view │ │ └── ttnode │ │ ├── login_form.htm │ │ └── manually_exec.htm └── root │ ├── etc │ ├── config │ │ └── ttnode │ ├── init.d │ │ └── ttnode │ └── uci-defaults │ │ └── luci-ttnode │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-ttnode.json │ └── ttnode │ ├── main.lua │ ├── requests.lua │ └── ttnode.lua ├── luci-app-ttyd ├── Makefile ├── luasrc │ ├── controller │ │ └── terminal.lua │ └── view │ │ └── terminal │ │ └── terminal.htm └── po │ ├── zh-cn │ └── terminal.po │ └── zh_Hans ├── luci-app-turboacc ├── Makefile ├── luasrc │ ├── controller │ │ └── turboacc.lua │ ├── model │ │ └── cbi │ │ │ └── turboacc.lua │ └── view │ │ └── turboacc │ │ └── turboacc_status.htm ├── po │ ├── zh-cn │ │ └── turboacc.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── turboacc │ ├── init.d │ │ ├── turboacc │ │ └── turboacc_fss │ └── uci-defaults │ │ └── luci-turboacc │ └── usr │ └── share │ ├── dnscache │ └── dnscache-while.sh │ └── rpcd │ └── acl.d │ └── luci-app-turboacc.json ├── luci-app-udp2raw ├── .gitattributes ├── LICENSE ├── Makefile ├── README.md ├── files │ ├── luci │ │ ├── controller │ │ │ └── udp2raw.lua │ │ ├── i18n │ │ │ ├── udp2raw.zh-cn.lmo │ │ │ └── udp2raw.zh-cn.po │ │ ├── model │ │ │ └── cbi │ │ │ │ └── udp2raw │ │ │ │ ├── general.lua │ │ │ │ ├── servers-details.lua │ │ │ │ └── servers.lua │ │ └── view │ │ │ └── udp2raw │ │ │ ├── dynamiclist.htm │ │ │ └── status.htm │ └── root │ │ └── etc │ │ ├── config │ │ └── udp2raw │ │ ├── init.d │ │ ├── udp2raw │ │ └── udp2raw.init │ │ └── uci-defaults │ │ └── luci-udp2raw ├── images │ ├── luci-app-udp2raw1.jpg │ ├── luci-app-udp2raw2.jpg │ └── luci-app-udp2raw3.jpg └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-unblockmusic ├── Config.in ├── Makefile ├── luasrc │ ├── controller │ │ └── unblockmusic.lua │ ├── model │ │ └── cbi │ │ │ └── unblockmusic │ │ │ ├── unblockmusic.lua │ │ │ └── unblockmusiclog.lua │ └── view │ │ └── unblockmusic │ │ └── unblockmusic_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── unblockmusic.po └── root │ ├── etc │ ├── config │ │ └── unblockmusic │ ├── hotplug.d │ │ └── iface │ │ │ └── 099-unblockmusic │ ├── init.d │ │ └── unblockmusic │ └── uci-defaults │ │ └── luci-unblockmusic │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── unblockmusic │ └── usr │ ├── bin │ └── UnblockNeteaseMusicCloud │ └── share │ ├── UnblockNeteaseMusic │ ├── getmusicip.sh │ ├── logcheck.sh │ └── update_core.sh │ └── rpcd │ └── acl.d │ └── luci-app-unblockmusic.json ├── luci-app-unblockneteasemusic-go ├── Makefile ├── luasrc │ ├── controller │ │ └── unblockneteasemusic.lua │ ├── model │ │ └── cbi │ │ │ ├── unblockneteasemusic.lua │ │ │ ├── unblockneteasemusic_log.lua │ │ │ └── unblockneteasemusic_senior.lua │ └── view │ │ └── unblockneteasemusic │ │ └── unblockneteasemusic_status.htm └── root │ ├── etc │ ├── config │ │ └── unblockneteasemusic │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-unblockneteasemusic │ ├── init.d │ │ └── unblockneteasemusic │ └── uci-defaults │ │ └── unblockneteasemusic │ ├── lib │ └── upgrade │ │ └── keep.d │ │ └── unblockneteasemusic │ └── usr │ └── share │ ├── UnblockNeteaseMusic │ ├── log_check.sh │ └── version_check.sh │ └── rpcd │ └── acl.d │ └── luci-app-unblockneteasemusic-go.json ├── luci-app-unblockneteasemusic ├── Makefile ├── luasrc │ ├── controller │ │ └── unblockneteasemusic.lua │ ├── model │ │ └── cbi │ │ │ └── unblockneteasemusic │ │ │ ├── unblockneteasemusic.lua │ │ │ ├── unblockneteasemusic_log.lua │ │ │ └── unblockneteasemusic_upgrade.lua │ └── view │ │ └── unblockneteasemusic │ │ ├── remove_core.htm │ │ ├── unblockneteasemusic_status.htm │ │ └── update_core.htm └── root │ ├── etc │ ├── config │ │ └── unblockneteasemusic │ ├── init.d │ │ └── unblockneteasemusic │ └── uci-defaults │ │ └── luci-unblockneteasemusic │ └── usr │ ├── bin │ └── unm-debug │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-unblockneteasemusic.json │ └── unblockneteasemusic │ ├── debugging.sh │ ├── log_check.sh │ └── update.sh ├── luci-app-usb-printer ├── Makefile ├── ipkg │ └── postinst ├── luasrc │ ├── controller │ │ └── usb_printer.lua │ └── model │ │ └── cbi │ │ └── usb_printer.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ ├── luci-app-usb-printer.po │ │ └── usb-printer.po └── root │ ├── etc │ ├── config │ │ └── usb_printer │ ├── hotplug.d │ │ └── usb │ │ │ └── 10-usb_printer │ ├── init.d │ │ └── usb_printer │ └── uci-defaults │ │ └── luci-usb-printer │ └── usr │ ├── bin │ ├── detectlp │ └── usb_printer_hotplug │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-usb-printer.json ├── luci-app-usb3disable ├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── usb3disable.lua │ └── model │ │ └── cbi │ │ └── usb3disable.lua └── root │ ├── etc │ └── config │ │ └── usb3disable │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-usb3disable.json ├── luci-app-uugamebooster ├── Makefile ├── luasrc │ ├── controller │ │ └── uugamebooster.lua │ ├── model │ │ └── cbi │ │ │ └── uugamebooster │ │ │ └── uugamebooster.lua │ └── view │ │ └── uugamebooster │ │ ├── uugamebooster_qcode.htm │ │ └── uugamebooster_status.htm ├── po │ ├── zh-cn │ │ └── uugamebooster.po │ └── zh_Hans └── root │ ├── etc │ └── uci-defaults │ │ └── 45_luci-uugamebooster │ ├── usr │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-uugamebooster.json │ └── www │ └── uugamebooster │ ├── uuandriod.png │ └── uuios.png ├── luci-app-v2ray-server ├── LICENSE ├── Makefile ├── luasrc │ ├── controller │ │ └── v2ray_server.lua │ ├── model │ │ └── cbi │ │ │ └── v2ray_server │ │ │ ├── api │ │ │ ├── genv2rayconfig.lua │ │ │ └── v2ray.lua │ │ │ ├── config.lua │ │ │ └── index.lua │ └── view │ │ └── v2ray_server │ │ ├── log.htm │ │ ├── users_list_status.htm │ │ ├── users_status.htm │ │ └── v2ray.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── v2ray_server.po └── root │ ├── etc │ ├── config │ │ └── v2ray_server │ ├── init.d │ │ └── v2ray_server │ └── uci-defaults │ │ └── luci-app-v2ray-server │ └── usr │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-v2ray-server.json │ └── v2ray_server │ └── firewall.include ├── luci-app-verysync ├── Makefile ├── luasrc │ ├── controller │ │ └── verysync.lua │ ├── model │ │ └── cbi │ │ │ └── verysync.lua │ └── view │ │ └── verysync │ │ └── verysync_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── verysync.po └── root │ ├── etc │ ├── config │ │ └── verysync │ ├── init.d │ │ └── verysync │ └── uci-defaults │ │ └── luci-verysync │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-verysync.json ├── luci-app-vlmcsd ├── Makefile ├── luasrc │ ├── controller │ │ └── vlmcsd.lua │ ├── model │ │ └── cbi │ │ │ └── vlmcsd │ │ │ ├── basic.lua │ │ │ └── config.lua │ └── view │ │ └── vlmcsd │ │ └── vlmcsd_status.htm ├── po │ ├── zh-cn │ │ └── vlmcsd.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── vlmcsd │ ├── init.d │ │ └── kms │ └── uci-defaults │ │ └── luci-vlmcsd │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-vlmcsd.json ├── luci-app-vsftpd ├── Makefile ├── luasrc │ ├── controller │ │ └── vsftpd.lua │ └── model │ │ └── cbi │ │ └── vsftpd │ │ ├── anonymous.lua │ │ ├── general.lua │ │ ├── item.lua │ │ ├── log.lua │ │ └── users.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── vsftpd.po └── root │ ├── etc │ └── uci-defaults │ │ └── luci-vsftpd │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-vsftpd.json ├── luci-app-vssr ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug---.md ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── vssr.lua │ ├── model │ │ └── cbi │ │ │ └── vssr │ │ │ ├── advanced.lua │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── control.lua │ │ │ ├── log.lua │ │ │ ├── router.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ ├── socks5.lua │ │ │ └── subscribe-config.lua │ └── view │ │ └── vssr │ │ ├── cell_valuefooter.htm │ │ ├── cell_valueheader.htm │ │ ├── licence.htm │ │ ├── refresh.htm │ │ ├── ssrurl.htm │ │ ├── status_bottom.htm │ │ ├── status_top.htm │ │ ├── tblsection.htm │ │ └── update_subscribe.htm ├── po │ ├── zh-cn │ │ └── vssr.po │ └── zh_Hans ├── relnotes.txt └── root │ ├── etc │ ├── config │ │ └── vssr │ ├── init.d │ │ └── vssr │ ├── uci-defaults │ │ └── luci-vssr │ └── vssr │ │ ├── ad.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── custom_domain.list │ │ ├── custom_ip.list │ │ ├── disney_domain.list │ │ ├── disney_ip.list │ │ ├── gfw.list │ │ ├── gfw_base.conf │ │ ├── gfw_list.conf │ │ ├── netflix_domain.list │ │ ├── netflix_ip.list │ │ ├── oversea_list.conf │ │ ├── prime_domain.list │ │ ├── prime_ip.list │ │ ├── tvb_domain.list │ │ ├── tvb_ip.list │ │ ├── tw_video_domain.list │ │ ├── tw_video_ip.list │ │ ├── white.list │ │ ├── youtube_domain.list │ │ └── youtube_ip.list │ ├── usr │ ├── bin │ │ ├── vssr-ad │ │ ├── vssr-gfw │ │ ├── vssr-monitor │ │ ├── vssr-qucikswitch │ │ ├── vssr-rules │ │ └── vssr-switch │ └── share │ │ ├── lua │ │ └── vssrutil.lua │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-vssr.json │ │ └── vssr │ │ ├── GeoLite2-Country.mmdb │ │ ├── chinaipset.sh │ │ ├── genconfig_ss.lua │ │ ├── genconfig_ssr.lua │ │ ├── genconfig_trojan.lua │ │ ├── genconfig_v2ray.lua │ │ ├── genconfig_v2ray_s.lua │ │ ├── gfw2ipset.sh │ │ ├── subscribe.lua │ │ └── update.lua │ └── www │ └── luci-static │ └── vssr │ ├── css │ ├── flag-icon.min.css │ ├── pure.css │ ├── sweetalert2.css │ └── vssr.css │ ├── emoji.js │ ├── emoji │ ├── 1f1e6-1f1e8.png │ ├── 1f1e6-1f1e9.png │ ├── 1f1e6-1f1ea.png │ ├── 1f1e6-1f1eb.png │ ├── 1f1e6-1f1ec.png │ ├── 1f1e6-1f1ee.png │ ├── 1f1e6-1f1f1.png │ ├── 1f1e6-1f1f2.png │ ├── 1f1e6-1f1f4.png │ ├── 1f1e6-1f1f6.png │ ├── 1f1e6-1f1f7.png │ ├── 1f1e6-1f1f8.png │ ├── 1f1e6-1f1f9.png │ ├── 1f1e6-1f1fa.png │ ├── 1f1e6-1f1fc.png │ ├── 1f1e6-1f1fd.png │ ├── 1f1e6-1f1ff.png │ ├── 1f1e7-1f1e6.png │ ├── 1f1e7-1f1e7.png │ ├── 1f1e7-1f1e9.png │ ├── 1f1e7-1f1ea.png │ ├── 1f1e7-1f1eb.png │ ├── 1f1e7-1f1ec.png │ ├── 1f1e7-1f1ed.png │ ├── 1f1e7-1f1ee.png │ ├── 1f1e7-1f1ef.png │ ├── 1f1e7-1f1f1.png │ ├── 1f1e7-1f1f2.png │ ├── 1f1e7-1f1f3.png │ ├── 1f1e7-1f1f4.png │ ├── 1f1e7-1f1f6.png │ ├── 1f1e7-1f1f7.png │ ├── 1f1e7-1f1f8.png │ ├── 1f1e7-1f1f9.png │ ├── 1f1e7-1f1fb.png │ ├── 1f1e7-1f1fc.png │ ├── 1f1e7-1f1fe.png │ ├── 1f1e7-1f1ff.png │ ├── 1f1e8-1f1e6.png │ ├── 1f1e8-1f1e8.png │ ├── 1f1e8-1f1e9.png │ ├── 1f1e8-1f1eb.png │ ├── 1f1e8-1f1ec.png │ ├── 1f1e8-1f1ed.png │ ├── 1f1e8-1f1ee.png │ ├── 1f1e8-1f1f0.png │ ├── 1f1e8-1f1f1.png │ ├── 1f1e8-1f1f2.png │ ├── 1f1e8-1f1f3.png │ ├── 1f1e8-1f1f4.png │ ├── 1f1e8-1f1f5.png │ ├── 1f1e8-1f1f7.png │ ├── 1f1e8-1f1fa.png │ ├── 1f1e8-1f1fb.png │ ├── 1f1e8-1f1fc.png │ ├── 1f1e8-1f1fd.png │ ├── 1f1e8-1f1fe.png │ ├── 1f1e8-1f1ff.png │ ├── 1f1e9-1f1ea.png │ ├── 1f1e9-1f1ec.png │ ├── 1f1e9-1f1ef.png │ ├── 1f1e9-1f1f0.png │ ├── 1f1e9-1f1f2.png │ ├── 1f1e9-1f1f4.png │ ├── 1f1e9-1f1ff.png │ ├── 1f1ea-1f1e6.png │ ├── 1f1ea-1f1e8.png │ ├── 1f1ea-1f1ea.png │ ├── 1f1ea-1f1ec.png │ ├── 1f1ea-1f1ed.png │ ├── 1f1ea-1f1f7.png │ ├── 1f1ea-1f1f8.png │ ├── 1f1ea-1f1f9.png │ ├── 1f1ea-1f1fa.png │ ├── 1f1eb-1f1ee.png │ ├── 1f1eb-1f1ef.png │ ├── 1f1eb-1f1f0.png │ ├── 1f1eb-1f1f2.png │ ├── 1f1eb-1f1f4.png │ ├── 1f1eb-1f1f7.png │ ├── 1f1ec-1f1e6.png │ ├── 1f1ec-1f1e7.png │ ├── 1f1ec-1f1e9.png │ ├── 1f1ec-1f1ea.png │ ├── 1f1ec-1f1eb.png │ ├── 1f1ec-1f1ec.png │ ├── 1f1ec-1f1ed.png │ ├── 1f1ec-1f1ee.png │ ├── 1f1ec-1f1f1.png │ ├── 1f1ec-1f1f2.png │ ├── 1f1ec-1f1f3.png │ ├── 1f1ec-1f1f5.png │ ├── 1f1ec-1f1f6.png │ ├── 1f1ec-1f1f7.png │ ├── 1f1ec-1f1f8.png │ ├── 1f1ec-1f1f9.png │ ├── 1f1ec-1f1fa.png │ ├── 1f1ec-1f1fc.png │ ├── 1f1ec-1f1fe.png │ ├── 1f1ed-1f1f0.png │ ├── 1f1ed-1f1f2.png │ ├── 1f1ed-1f1f3.png │ ├── 1f1ed-1f1f7.png │ ├── 1f1ed-1f1f9.png │ ├── 1f1ed-1f1fa.png │ ├── 1f1ee-1f1e8.png │ ├── 1f1ee-1f1e9.png │ ├── 1f1ee-1f1ea.png │ ├── 1f1ee-1f1f1.png │ ├── 1f1ee-1f1f2.png │ ├── 1f1ee-1f1f3.png │ ├── 1f1ee-1f1f4.png │ ├── 1f1ee-1f1f6.png │ ├── 1f1ee-1f1f7.png │ ├── 1f1ee-1f1f8.png │ ├── 1f1ee-1f1f9.png │ ├── 1f1ef-1f1ea.png │ ├── 1f1ef-1f1f2.png │ ├── 1f1ef-1f1f4.png │ ├── 1f1ef-1f1f5.png │ ├── 1f1f0-1f1ea.png │ ├── 1f1f0-1f1ec.png │ ├── 1f1f0-1f1ed.png │ ├── 1f1f0-1f1ee.png │ ├── 1f1f0-1f1f2.png │ ├── 1f1f0-1f1f3.png │ ├── 1f1f0-1f1f5.png │ ├── 1f1f0-1f1f7.png │ ├── 1f1f0-1f1fc.png │ ├── 1f1f0-1f1fe.png │ ├── 1f1f0-1f1ff.png │ ├── 1f1f1-1f1e6.png │ ├── 1f1f1-1f1e7.png │ ├── 1f1f1-1f1e8.png │ ├── 1f1f1-1f1ee.png │ ├── 1f1f1-1f1f0.png │ ├── 1f1f1-1f1f7.png │ ├── 1f1f1-1f1f8.png │ ├── 1f1f1-1f1f9.png │ ├── 1f1f1-1f1fa.png │ ├── 1f1f1-1f1fb.png │ ├── 1f1f1-1f1fe.png │ ├── 1f1f2-1f1e6.png │ ├── 1f1f2-1f1e8.png │ ├── 1f1f2-1f1e9.png │ ├── 1f1f2-1f1ea.png │ ├── 1f1f2-1f1eb.png │ ├── 1f1f2-1f1ec.png │ ├── 1f1f2-1f1ed.png │ ├── 1f1f2-1f1f0.png │ ├── 1f1f2-1f1f1.png │ ├── 1f1f2-1f1f2.png │ ├── 1f1f2-1f1f3.png │ ├── 1f1f2-1f1f4.png │ ├── 1f1f2-1f1f5.png │ ├── 1f1f2-1f1f6.png │ ├── 1f1f2-1f1f7.png │ ├── 1f1f2-1f1f8.png │ ├── 1f1f2-1f1f9.png │ ├── 1f1f2-1f1fa.png │ ├── 1f1f2-1f1fb.png │ ├── 1f1f2-1f1fc.png │ ├── 1f1f2-1f1fd.png │ ├── 1f1f2-1f1fe.png │ ├── 1f1f2-1f1ff.png │ ├── 1f1f3-1f1e6.png │ ├── 1f1f3-1f1e8.png │ ├── 1f1f3-1f1ea.png │ ├── 1f1f3-1f1eb.png │ ├── 1f1f3-1f1ec.png │ ├── 1f1f3-1f1ee.png │ ├── 1f1f3-1f1f1.png │ ├── 1f1f3-1f1f4.png │ ├── 1f1f3-1f1f5.png │ ├── 1f1f3-1f1f7.png │ ├── 1f1f3-1f1fa.png │ ├── 1f1f3-1f1ff.png │ ├── 1f1f4-1f1f2.png │ ├── 1f1f5-1f1e6.png │ ├── 1f1f5-1f1ea.png │ ├── 1f1f5-1f1eb.png │ ├── 1f1f5-1f1ec.png │ ├── 1f1f5-1f1ed.png │ ├── 1f1f5-1f1f0.png │ ├── 1f1f5-1f1f1.png │ ├── 1f1f5-1f1f2.png │ ├── 1f1f5-1f1f3.png │ ├── 1f1f5-1f1f7.png │ ├── 1f1f5-1f1f8.png │ ├── 1f1f5-1f1f9.png │ ├── 1f1f5-1f1fc.png │ ├── 1f1f5-1f1fe.png │ ├── 1f1f6-1f1e6.png │ ├── 1f1f7-1f1ea.png │ ├── 1f1f7-1f1f4.png │ ├── 1f1f7-1f1f8.png │ ├── 1f1f7-1f1fa.png │ ├── 1f1f7-1f1fc.png │ ├── 1f1f8-1f1e6.png │ ├── 1f1f8-1f1e7.png │ ├── 1f1f8-1f1e8.png │ ├── 1f1f8-1f1e9.png │ ├── 1f1f8-1f1ea.png │ ├── 1f1f8-1f1ec.png │ ├── 1f1f8-1f1ed.png │ ├── 1f1f8-1f1ee.png │ ├── 1f1f8-1f1ef.png │ ├── 1f1f8-1f1f0.png │ ├── 1f1f8-1f1f1.png │ ├── 1f1f8-1f1f2.png │ ├── 1f1f8-1f1f3.png │ ├── 1f1f8-1f1f4.png │ ├── 1f1f8-1f1f7.png │ ├── 1f1f8-1f1f8.png │ ├── 1f1f8-1f1f9.png │ ├── 1f1f8-1f1fb.png │ ├── 1f1f8-1f1fd.png │ ├── 1f1f8-1f1fe.png │ ├── 1f1f8-1f1ff.png │ ├── 1f1f9-1f1e6.png │ ├── 1f1f9-1f1e8.png │ ├── 1f1f9-1f1e9.png │ ├── 1f1f9-1f1eb.png │ ├── 1f1f9-1f1ec.png │ ├── 1f1f9-1f1ed.png │ ├── 1f1f9-1f1ef.png │ ├── 1f1f9-1f1f0.png │ ├── 1f1f9-1f1f1.png │ ├── 1f1f9-1f1f2.png │ ├── 1f1f9-1f1f3.png │ ├── 1f1f9-1f1f4.png │ ├── 1f1f9-1f1f7.png │ ├── 1f1f9-1f1f9.png │ ├── 1f1f9-1f1fb.png │ ├── 1f1f9-1f1fc.png │ ├── 1f1f9-1f1ff.png │ ├── 1f1fa-1f1e6.png │ ├── 1f1fa-1f1ec.png │ ├── 1f1fa-1f1f2.png │ ├── 1f1fa-1f1f3.png │ ├── 1f1fa-1f1f8.png │ ├── 1f1fa-1f1fe.png │ ├── 1f1fa-1f1ff.png │ ├── 1f1fb-1f1e6.png │ ├── 1f1fb-1f1e8.png │ ├── 1f1fb-1f1ea.png │ ├── 1f1fb-1f1ec.png │ ├── 1f1fb-1f1ee.png │ ├── 1f1fb-1f1f3.png │ ├── 1f1fb-1f1fa.png │ ├── 1f1fc-1f1eb.png │ ├── 1f1fc-1f1f8.png │ ├── 1f1fd-1f1f0.png │ ├── 1f1fe-1f1ea.png │ ├── 1f1fe-1f1f9.png │ ├── 1f1ff-1f1e6.png │ ├── 1f1ff-1f1f2.png │ ├── 1f1ff-1f1fc.png │ └── 2x │ │ ├── 1f1e6-1f1e8.png │ │ ├── 1f1e6-1f1e9.png │ │ ├── 1f1e6-1f1ea.png │ │ ├── 1f1e6-1f1eb.png │ │ ├── 1f1e6-1f1ec.png │ │ ├── 1f1e6-1f1ee.png │ │ ├── 1f1e6-1f1f1.png │ │ ├── 1f1e6-1f1f2.png │ │ ├── 1f1e6-1f1f4.png │ │ ├── 1f1e6-1f1f6.png │ │ ├── 1f1e6-1f1f7.png │ │ ├── 1f1e6-1f1f8.png │ │ ├── 1f1e6-1f1f9.png │ │ ├── 1f1e6-1f1fa.png │ │ ├── 1f1e6-1f1fc.png │ │ ├── 1f1e6-1f1fd.png │ │ ├── 1f1e6-1f1ff.png │ │ ├── 1f1e7-1f1e6.png │ │ ├── 1f1e7-1f1e7.png │ │ ├── 1f1e7-1f1e9.png │ │ ├── 1f1e7-1f1ea.png │ │ ├── 1f1e7-1f1eb.png │ │ ├── 1f1e7-1f1ec.png │ │ ├── 1f1e7-1f1ed.png │ │ ├── 1f1e7-1f1ee.png │ │ ├── 1f1e7-1f1ef.png │ │ ├── 1f1e7-1f1f1.png │ │ ├── 1f1e7-1f1f2.png │ │ ├── 1f1e7-1f1f3.png │ │ ├── 1f1e7-1f1f4.png │ │ ├── 1f1e7-1f1f6.png │ │ ├── 1f1e7-1f1f7.png │ │ ├── 1f1e7-1f1f8.png │ │ ├── 1f1e7-1f1f9.png │ │ ├── 1f1e7-1f1fb.png │ │ ├── 1f1e7-1f1fc.png │ │ ├── 1f1e7-1f1fe.png │ │ ├── 1f1e7-1f1ff.png │ │ ├── 1f1e8-1f1e6.png │ │ ├── 1f1e8-1f1e8.png │ │ ├── 1f1e8-1f1e9.png │ │ ├── 1f1e8-1f1eb.png │ │ ├── 1f1e8-1f1ec.png │ │ ├── 1f1e8-1f1ed.png │ │ ├── 1f1e8-1f1ee.png │ │ ├── 1f1e8-1f1f0.png │ │ ├── 1f1e8-1f1f1.png │ │ ├── 1f1e8-1f1f2.png │ │ ├── 1f1e8-1f1f3.png │ │ ├── 1f1e8-1f1f4.png │ │ ├── 1f1e8-1f1f5.png │ │ ├── 1f1e8-1f1f7.png │ │ ├── 1f1e8-1f1fa.png │ │ ├── 1f1e8-1f1fb.png │ │ ├── 1f1e8-1f1fc.png │ │ ├── 1f1e8-1f1fd.png │ │ ├── 1f1e8-1f1fe.png │ │ ├── 1f1e8-1f1ff.png │ │ ├── 1f1e9-1f1ea.png │ │ ├── 1f1e9-1f1ec.png │ │ ├── 1f1e9-1f1ef.png │ │ ├── 1f1e9-1f1f0.png │ │ ├── 1f1e9-1f1f2.png │ │ ├── 1f1e9-1f1f4.png │ │ ├── 1f1e9-1f1ff.png │ │ ├── 1f1ea-1f1e6.png │ │ ├── 1f1ea-1f1e8.png │ │ ├── 1f1ea-1f1ea.png │ │ ├── 1f1ea-1f1ec.png │ │ ├── 1f1ea-1f1ed.png │ │ ├── 1f1ea-1f1f7.png │ │ ├── 1f1ea-1f1f8.png │ │ ├── 1f1ea-1f1f9.png │ │ ├── 1f1ea-1f1fa.png │ │ ├── 1f1eb-1f1ee.png │ │ ├── 1f1eb-1f1ef.png │ │ ├── 1f1eb-1f1f0.png │ │ ├── 1f1eb-1f1f2.png │ │ ├── 1f1eb-1f1f4.png │ │ ├── 1f1eb-1f1f7.png │ │ ├── 1f1ec-1f1e6.png │ │ ├── 1f1ec-1f1e7.png │ │ ├── 1f1ec-1f1e9.png │ │ ├── 1f1ec-1f1ea.png │ │ ├── 1f1ec-1f1eb.png │ │ ├── 1f1ec-1f1ec.png │ │ ├── 1f1ec-1f1ed.png │ │ ├── 1f1ec-1f1ee.png │ │ ├── 1f1ec-1f1f1.png │ │ ├── 1f1ec-1f1f2.png │ │ ├── 1f1ec-1f1f3.png │ │ ├── 1f1ec-1f1f5.png │ │ ├── 1f1ec-1f1f6.png │ │ ├── 1f1ec-1f1f7.png │ │ ├── 1f1ec-1f1f8.png │ │ ├── 1f1ec-1f1f9.png │ │ ├── 1f1ec-1f1fa.png │ │ ├── 1f1ec-1f1fc.png │ │ ├── 1f1ec-1f1fe.png │ │ ├── 1f1ed-1f1f0.png │ │ ├── 1f1ed-1f1f2.png │ │ ├── 1f1ed-1f1f3.png │ │ ├── 1f1ed-1f1f7.png │ │ ├── 1f1ed-1f1f9.png │ │ ├── 1f1ed-1f1fa.png │ │ ├── 1f1ee-1f1e8.png │ │ ├── 1f1ee-1f1e9.png │ │ ├── 1f1ee-1f1ea.png │ │ ├── 1f1ee-1f1f1.png │ │ ├── 1f1ee-1f1f2.png │ │ ├── 1f1ee-1f1f3.png │ │ ├── 1f1ee-1f1f4.png │ │ ├── 1f1ee-1f1f6.png │ │ ├── 1f1ee-1f1f7.png │ │ ├── 1f1ee-1f1f8.png │ │ ├── 1f1ee-1f1f9.png │ │ ├── 1f1ef-1f1ea.png │ │ ├── 1f1ef-1f1f2.png │ │ ├── 1f1ef-1f1f4.png │ │ ├── 1f1ef-1f1f5.png │ │ ├── 1f1f0-1f1ea.png │ │ ├── 1f1f0-1f1ec.png │ │ ├── 1f1f0-1f1ed.png │ │ ├── 1f1f0-1f1ee.png │ │ ├── 1f1f0-1f1f2.png │ │ ├── 1f1f0-1f1f3.png │ │ ├── 1f1f0-1f1f5.png │ │ ├── 1f1f0-1f1f7.png │ │ ├── 1f1f0-1f1fc.png │ │ ├── 1f1f0-1f1fe.png │ │ ├── 1f1f0-1f1ff.png │ │ ├── 1f1f1-1f1e6.png │ │ ├── 1f1f1-1f1e7.png │ │ ├── 1f1f1-1f1e8.png │ │ ├── 1f1f1-1f1ee.png │ │ ├── 1f1f1-1f1f0.png │ │ ├── 1f1f1-1f1f7.png │ │ ├── 1f1f1-1f1f8.png │ │ ├── 1f1f1-1f1f9.png │ │ ├── 1f1f1-1f1fa.png │ │ ├── 1f1f1-1f1fb.png │ │ ├── 1f1f1-1f1fe.png │ │ ├── 1f1f2-1f1e6.png │ │ ├── 1f1f2-1f1e8.png │ │ ├── 1f1f2-1f1e9.png │ │ ├── 1f1f2-1f1ea.png │ │ ├── 1f1f2-1f1eb.png │ │ ├── 1f1f2-1f1ec.png │ │ ├── 1f1f2-1f1ed.png │ │ ├── 1f1f2-1f1f0.png │ │ ├── 1f1f2-1f1f1.png │ │ ├── 1f1f2-1f1f2.png │ │ ├── 1f1f2-1f1f3.png │ │ ├── 1f1f2-1f1f4.png │ │ ├── 1f1f2-1f1f5.png │ │ ├── 1f1f2-1f1f6.png │ │ ├── 1f1f2-1f1f7.png │ │ ├── 1f1f2-1f1f8.png │ │ ├── 1f1f2-1f1f9.png │ │ ├── 1f1f2-1f1fa.png │ │ ├── 1f1f2-1f1fb.png │ │ ├── 1f1f2-1f1fc.png │ │ ├── 1f1f2-1f1fd.png │ │ ├── 1f1f2-1f1fe.png │ │ ├── 1f1f2-1f1ff.png │ │ ├── 1f1f3-1f1e6.png │ │ ├── 1f1f3-1f1e8.png │ │ ├── 1f1f3-1f1ea.png │ │ ├── 1f1f3-1f1eb.png │ │ ├── 1f1f3-1f1ec.png │ │ ├── 1f1f3-1f1ee.png │ │ ├── 1f1f3-1f1f1.png │ │ ├── 1f1f3-1f1f4.png │ │ ├── 1f1f3-1f1f5.png │ │ ├── 1f1f3-1f1f7.png │ │ ├── 1f1f3-1f1fa.png │ │ ├── 1f1f3-1f1ff.png │ │ ├── 1f1f4-1f1f2.png │ │ ├── 1f1f5-1f1e6.png │ │ ├── 1f1f5-1f1ea.png │ │ ├── 1f1f5-1f1eb.png │ │ ├── 1f1f5-1f1ec.png │ │ ├── 1f1f5-1f1ed.png │ │ ├── 1f1f5-1f1f0.png │ │ ├── 1f1f5-1f1f1.png │ │ ├── 1f1f5-1f1f2.png │ │ ├── 1f1f5-1f1f3.png │ │ ├── 1f1f5-1f1f7.png │ │ ├── 1f1f5-1f1f8.png │ │ ├── 1f1f5-1f1f9.png │ │ ├── 1f1f5-1f1fc.png │ │ ├── 1f1f5-1f1fe.png │ │ ├── 1f1f6-1f1e6.png │ │ ├── 1f1f7-1f1ea.png │ │ ├── 1f1f7-1f1f4.png │ │ ├── 1f1f7-1f1f8.png │ │ ├── 1f1f7-1f1fa.png │ │ ├── 1f1f7-1f1fc.png │ │ ├── 1f1f8-1f1e6.png │ │ ├── 1f1f8-1f1e7.png │ │ ├── 1f1f8-1f1e8.png │ │ ├── 1f1f8-1f1e9.png │ │ ├── 1f1f8-1f1ea.png │ │ ├── 1f1f8-1f1ec.png │ │ ├── 1f1f8-1f1ed.png │ │ ├── 1f1f8-1f1ee.png │ │ ├── 1f1f8-1f1ef.png │ │ ├── 1f1f8-1f1f0.png │ │ ├── 1f1f8-1f1f1.png │ │ ├── 1f1f8-1f1f2.png │ │ ├── 1f1f8-1f1f3.png │ │ ├── 1f1f8-1f1f4.png │ │ ├── 1f1f8-1f1f7.png │ │ ├── 1f1f8-1f1f8.png │ │ ├── 1f1f8-1f1f9.png │ │ ├── 1f1f8-1f1fb.png │ │ ├── 1f1f8-1f1fd.png │ │ ├── 1f1f8-1f1fe.png │ │ ├── 1f1f8-1f1ff.png │ │ ├── 1f1f9-1f1e6.png │ │ ├── 1f1f9-1f1e8.png │ │ ├── 1f1f9-1f1e9.png │ │ ├── 1f1f9-1f1eb.png │ │ ├── 1f1f9-1f1ec.png │ │ ├── 1f1f9-1f1ed.png │ │ ├── 1f1f9-1f1ef.png │ │ ├── 1f1f9-1f1f0.png │ │ ├── 1f1f9-1f1f1.png │ │ ├── 1f1f9-1f1f2.png │ │ ├── 1f1f9-1f1f3.png │ │ ├── 1f1f9-1f1f4.png │ │ ├── 1f1f9-1f1f7.png │ │ ├── 1f1f9-1f1f9.png │ │ ├── 1f1f9-1f1fb.png │ │ ├── 1f1f9-1f1fc.png │ │ ├── 1f1f9-1f1ff.png │ │ ├── 1f1fa-1f1e6.png │ │ ├── 1f1fa-1f1ec.png │ │ ├── 1f1fa-1f1f2.png │ │ ├── 1f1fa-1f1f3.png │ │ ├── 1f1fa-1f1f8.png │ │ ├── 1f1fa-1f1fe.png │ │ ├── 1f1fa-1f1ff.png │ │ ├── 1f1fb-1f1e6.png │ │ ├── 1f1fb-1f1e8.png │ │ ├── 1f1fb-1f1ea.png │ │ ├── 1f1fb-1f1ec.png │ │ ├── 1f1fb-1f1ee.png │ │ ├── 1f1fb-1f1f3.png │ │ ├── 1f1fb-1f1fa.png │ │ ├── 1f1fc-1f1eb.png │ │ ├── 1f1fc-1f1f8.png │ │ ├── 1f1fd-1f1f0.png │ │ ├── 1f1fe-1f1ea.png │ │ ├── 1f1fe-1f1f9.png │ │ ├── 1f1ff-1f1e6.png │ │ ├── 1f1ff-1f1f2.png │ │ └── 1f1ff-1f1fc.png │ ├── flags │ └── 4x3 │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ca.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg │ ├── img │ ├── client.svg │ ├── pdnsd.svg │ ├── site_icon1_01.png │ ├── site_icon1_02.png │ ├── site_icon1_03.png │ ├── site_icon1_04.png │ ├── site_icon_01.png │ ├── site_icon_02.png │ ├── site_icon_03.png │ ├── site_icon_04.png │ ├── socks5.svg │ ├── switch.png │ └── udp.svg │ ├── jquery.min.js │ ├── polyfill.js │ ├── sweetalert.js │ └── vssr.js ├── luci-app-webadmin ├── Makefile ├── luasrc │ ├── controller │ │ └── webadmin.lua │ └── model │ │ └── cbi │ │ └── webadmin.lua ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── webadmin.po └── root │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-webadmin.json ├── luci-app-webrestriction ├── Makefile ├── luasrc │ ├── controller │ │ └── webrestriction.lua │ ├── model │ │ └── cbi │ │ │ └── webrestriction.lua │ └── view │ │ └── webrestriction │ │ ├── index.htm │ │ └── webrestriction.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── webrestriction.po └── root │ ├── etc │ ├── config │ │ └── webrestriction │ ├── init.d │ │ └── webrestriction │ └── uci-defaults │ │ └── luci-app-control-webrestriction │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-webrestriction.json ├── luci-app-weburl ├── Makefile ├── luasrc │ ├── controller │ │ └── weburl.lua │ ├── model │ │ └── cbi │ │ │ └── weburl.lua │ └── view │ │ └── weburl │ │ ├── index.htm │ │ └── weburl.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── weburl.po └── root │ ├── etc │ ├── config │ │ └── weburl │ ├── init.d │ │ └── weburl │ └── uci-defaults │ │ └── luci-app-control-weburl │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-weburl.json ├── luci-app-wifidog ├── LICENSE ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── wifidog.lua │ └── model │ │ └── cbi │ │ └── wifidog │ │ └── wifidog_cfg.lua └── root │ ├── etc │ ├── config │ │ └── wifidog │ ├── init.d │ │ └── wifidog │ └── uci-defaults │ │ └── luci-wifidog │ └── usr │ ├── sbin │ └── wifidog_check.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-wifidog.json ├── luci-app-wizard ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── wizard │ │ └── initsetup.js ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── wizard.po └── root │ ├── etc │ ├── config │ │ └── wizard │ ├── init.d │ │ └── wizard │ └── uci-defaults │ │ ├── 40-luci-wizard │ │ └── 96-wizard-defaults │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-wizard.json │ └── rpcd │ └── acl.d │ └── luci-app-wizard.json ├── luci-app-wolplus ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── wolplus.lua │ ├── model │ │ └── cbi │ │ │ └── wolplus.lua │ └── view │ │ └── wolplus │ │ ├── awake.htm │ │ └── index.htm ├── po │ ├── zh-cn │ │ └── wolplus.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── wolplus │ └── uci-defaults │ │ └── luci-app-wolplus │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-wolplus.json ├── luci-app-wrtbwmon ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── wrtbwmon │ │ ├── config.js │ │ ├── custom.js │ │ ├── details.js │ │ └── wrtbwmon.css ├── po │ ├── templates │ │ └── wrtbwmon.pot │ ├── zh-cn │ └── zh_Hans │ │ └── wrtbwmon.po └── root │ ├── etc │ └── luci-wrtbwmon.conf │ └── usr │ ├── libexec │ └── rpcd │ │ └── luci.wrtbwmon │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-wrtbwmon.json │ └── rpcd │ └── acl.d │ └── luci-app-wrtbwmon.json ├── luci-app-xlnetacc ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── xlnetacc.lua │ ├── model │ │ └── cbi │ │ │ └── xlnetacc.lua │ └── view │ │ └── xlnetacc │ │ ├── logview.htm │ │ └── status.htm ├── po │ ├── zh-cn │ │ └── xlnetacc.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── xlnetacc │ ├── hotplug.d │ │ └── iface │ │ │ └── 95-xlnetacc │ ├── init.d │ │ └── xlnetacc │ └── uci-defaults │ │ └── luci-xlnetacc │ └── usr │ ├── bin │ └── xlnetacc.sh │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-xlnetacc.json ├── luci-app-xunlei ├── Makefile ├── README.md ├── luasrc │ ├── controller │ │ └── xunlei.lua │ └── model │ │ └── cbi │ │ └── xunlei.lua └── root │ ├── app │ └── xunlei │ │ ├── ETMDaemon │ │ ├── EmbedThunderManager │ │ ├── portal │ │ └── vod_httpserver │ ├── etc │ ├── config │ │ └── xunlei │ ├── init.d │ │ └── xunlei │ ├── uci-defaults │ │ └── luci-xunlei │ └── xware │ │ ├── cfg │ │ ├── xlatest │ │ └── xlup │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-xunlei.json ├── luci-app-zerotier ├── Makefile ├── luasrc │ ├── controller │ │ └── zerotier.lua │ ├── model │ │ └── cbi │ │ │ └── zerotier │ │ │ ├── info.lua │ │ │ └── settings.lua │ └── view │ │ └── zerotier │ │ └── zerotier_status.htm ├── po │ ├── zh-cn │ └── zh_Hans │ │ └── zerotier.po └── root │ ├── etc │ ├── init.d │ │ └── zerotier │ ├── uci-defaults │ │ └── 40_luci-zerotier │ ├── zerotier.start │ ├── zerotier.stop │ └── zerotier │ │ └── zerotier.log │ └── usr │ └── share │ └── rpcd │ └── acl.d │ └── luci-app-zerotier.json ├── luci-lib-fs ├── Makefile └── files │ └── fs.lua ├── luci-proto-minieap ├── LICENSE ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── minieap.js ├── luasrc │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_minieap.lua │ │ └── network │ │ └── proto_minieap.lua └── po │ ├── templates │ └── minieap.pot │ ├── zh-cn │ └── minieap.po │ └── zh_Hans ├── luci-proto-netkeeper ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── netkeeper.js └── po │ ├── zh-cn │ └── zh_Hans │ └── netkeeper.po ├── luci-theme-argon ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.md ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_ZH.md ├── htdocs │ └── luci-static │ │ ├── argon │ │ ├── background │ │ │ └── README.md │ │ ├── css │ │ │ ├── cascade.css │ │ │ └── dark.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── TypoGraphica.eot │ │ │ ├── TypoGraphica.svg │ │ │ ├── TypoGraphica.ttf │ │ │ ├── TypoGraphica.woff │ │ │ ├── argon.eot │ │ │ ├── argon.svg │ │ │ ├── argon.ttf │ │ │ └── argon.woff │ │ ├── icon │ │ │ ├── android-icon-192x192.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── arrow.svg │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ └── spinner.svg │ │ ├── img │ │ │ ├── argon.svg │ │ │ ├── bg1.jpg │ │ │ ├── blank.png │ │ │ ├── volume_high.svg │ │ │ └── volume_off.svg │ │ ├── js │ │ │ ├── jquery.min.js │ │ │ └── polyfill.min.js │ │ └── less │ │ │ ├── cascade.less │ │ │ ├── dark.less │ │ │ ├── fonts.less │ │ │ └── pure-min.less │ │ └── resources │ │ └── menu-argon.js ├── luasrc │ └── view │ │ └── themes │ │ └── argon │ │ ├── footer.htm │ │ ├── footer_login.htm │ │ ├── header.htm │ │ ├── header_login.htm │ │ ├── out_footer_login.htm │ │ ├── out_header_login.htm │ │ └── sysauth.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-argon ├── luci-theme-edge ├── .gitignore ├── Makefile ├── README.md ├── htdocs │ └── luci-static │ │ └── edge │ │ ├── background │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ │ ├── cascade.css │ │ ├── custom.css │ │ ├── favicon.ico │ │ ├── fonts │ │ └── argon.woff │ │ ├── glare.svg │ │ ├── icons │ │ ├── arrow.svg │ │ └── spinner.svg │ │ ├── js │ │ ├── jquery.min.js │ │ ├── script.js │ │ └── waves.js │ │ ├── landscape.css │ │ ├── logo.png │ │ ├── sun.svg │ │ └── waves.css ├── luasrc │ └── view │ │ ├── header_login.htm │ │ └── themes │ │ └── edge │ │ ├── footer.htm │ │ ├── header.htm │ │ ├── header_login.htm │ │ └── sysauth.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-edge ├── mentohust └── Makefile ├── microsocks └── Makefile ├── miniupnpd ├── Makefile ├── files │ ├── firewall.include │ ├── miniupnpd.defaults │ ├── miniupnpd.hotplug │ ├── miniupnpd.init │ └── upnpd.config └── patches │ ├── 101-no-ssl-uuid.patch │ ├── 102-ipv6-ext-port.patch │ ├── 103-no-ipv6-autodetection.patch │ ├── 104-always-libuuid.patch │ └── 105-build-with-kernel-5.4.patch ├── mosdns └── Makefile ├── mt-drivers ├── mt7603e │ ├── Makefile │ ├── config.in │ └── src │ │ ├── mt7603_wifi │ │ ├── History.txt │ │ ├── Kconfig │ │ ├── Kconfig.mt_wifi │ │ ├── Makefile │ │ ├── RT2860AP.dat │ │ ├── RT2860APCard.dat │ │ ├── ap │ │ │ ├── ap.c │ │ │ ├── ap_acl_v2.c │ │ │ ├── ap_apcli.c │ │ │ ├── ap_apcli_inf.c │ │ │ ├── ap_assoc.c │ │ │ ├── ap_auth.c │ │ │ ├── ap_autoChSel.c │ │ │ ├── ap_band_steering.c │ │ │ ├── ap_cfg.c │ │ │ ├── ap_connect.c │ │ │ ├── ap_data.c │ │ │ ├── ap_dls.c │ │ │ ├── ap_ftkd.c │ │ │ ├── ap_ids.c │ │ │ ├── ap_mbss.c │ │ │ ├── ap_mbss_inf.c │ │ │ ├── ap_mix_mode.c │ │ │ ├── ap_mlme.c │ │ │ ├── ap_nintendo.c │ │ │ ├── ap_nps.c │ │ │ ├── ap_qload.c │ │ │ ├── ap_repeater.c │ │ │ ├── ap_sanity.c │ │ │ ├── ap_sync.c │ │ │ ├── ap_wds.c │ │ │ ├── ap_wds_inf.c │ │ │ ├── ap_wpa.c │ │ │ ├── apcli_assoc.c │ │ │ ├── apcli_auth.c │ │ │ ├── apcli_ctrl.c │ │ │ ├── apcli_link_cover.c │ │ │ ├── apcli_sync.c │ │ │ └── sniffer_mib.c │ │ ├── ate │ │ │ ├── ate_agent.c │ │ │ ├── include │ │ │ │ ├── ate.h │ │ │ │ ├── ate_agent.h │ │ │ │ ├── qa_agent.h │ │ │ │ ├── rt_ate.h │ │ │ │ └── rt_qa.h │ │ │ ├── inf │ │ │ │ ├── ate_pci.c │ │ │ │ └── ate_usb.c │ │ │ ├── mt_mac │ │ │ │ └── mt_ate.c │ │ │ └── qa_agent.c │ │ ├── chips │ │ │ ├── mt7603.c │ │ │ ├── mt7628.c │ │ │ ├── mt7636.c │ │ │ ├── rt28xx.c │ │ │ ├── rt65xx.c │ │ │ ├── rtmp_chip.c │ │ │ └── rtxx_dft.c │ │ ├── common │ │ │ ├── RT85592.bin │ │ │ ├── a4_conn.c │ │ │ ├── action.c │ │ │ ├── all_net_event.c │ │ │ ├── ba_action.c │ │ │ ├── bn_lib.c │ │ │ ├── client_wds.c │ │ │ ├── cmm_aes.c │ │ │ ├── cmm_cfg.c │ │ │ ├── cmm_cmd.c │ │ │ ├── cmm_cs.c │ │ │ ├── cmm_data.c │ │ │ ├── cmm_data_pci.c │ │ │ ├── cmm_data_sdio.c │ │ │ ├── cmm_dfs.c │ │ │ ├── cmm_info.c │ │ │ ├── cmm_loft_cal.c │ │ │ ├── cmm_mac_pci.c │ │ │ ├── cmm_mac_sdio.c │ │ │ ├── cmm_mat.c │ │ │ ├── cmm_mat_iparp.c │ │ │ ├── cmm_mat_ipv6.c │ │ │ ├── cmm_mat_pppoe.c │ │ │ ├── cmm_profile.c │ │ │ ├── cmm_radar.c │ │ │ ├── cmm_rf_cal.c │ │ │ ├── cmm_sanity.c │ │ │ ├── cmm_sync.c │ │ │ ├── cmm_tkip.c │ │ │ ├── cmm_usb_io.c │ │ │ ├── cmm_video.c │ │ │ ├── cmm_wep.c │ │ │ ├── cmm_wpa.c │ │ │ ├── crypt_aes.c │ │ │ ├── crypt_arc4.c │ │ │ ├── crypt_biginteger.c │ │ │ ├── crypt_bignum.c │ │ │ ├── crypt_dh.c │ │ │ ├── crypt_hmac.c │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_sha2.c │ │ │ ├── ecc.c │ │ │ ├── ee_efuse.c │ │ │ ├── ee_flash.c │ │ │ ├── ee_prom.c │ │ │ ├── eeprom.c │ │ │ ├── event_notifier.c │ │ │ ├── event_notifier_old.c │ │ │ ├── frq_cal.c │ │ │ ├── ft.c │ │ │ ├── ft_iocl.c │ │ │ ├── ft_rc.c │ │ │ ├── ft_tlv.c │ │ │ ├── gas.c │ │ │ ├── hotspot.c │ │ │ ├── igmp_snoop.c │ │ │ ├── map.c │ │ │ ├── mbo.c │ │ │ ├── misc.c │ │ │ ├── mlme.c │ │ │ ├── mt_io.c │ │ │ ├── mt_ps.c │ │ │ ├── mtsdio_data.c │ │ │ ├── mtsdio_io.c │ │ │ ├── mtusb_io.c │ │ │ ├── mwds.c │ │ │ ├── netif_block.c │ │ │ ├── nfc.c │ │ │ ├── op_class.c │ │ │ ├── owe.c │ │ │ ├── pmf.c │ │ │ ├── ps.c │ │ │ ├── ral_ps.c │ │ │ ├── routing_tab.c │ │ │ ├── rrm.c │ │ │ ├── rrm_sanity.c │ │ │ ├── rrm_tlv.c │ │ │ ├── rt2860.bin │ │ │ ├── rt2860.bin.dfs │ │ │ ├── rt2870_sw_ch_offload.bin │ │ │ ├── rt_channel.c │ │ │ ├── rt_led.c │ │ │ ├── rt_os_util.c │ │ │ ├── rtmp_init.c │ │ │ ├── rtmp_init_inf.c │ │ │ ├── rtmp_timer.c │ │ │ ├── sae.c │ │ │ ├── scan.c │ │ │ ├── spectrum.c │ │ │ ├── sys_log.c │ │ │ ├── txpower.c │ │ │ ├── uapsd.c │ │ │ ├── vendor.c │ │ │ ├── vht.c │ │ │ ├── wapi.c │ │ │ ├── wapi_crypt.c │ │ │ ├── wapi_sms4.c │ │ │ ├── wfd.c │ │ │ ├── wnm.c │ │ │ ├── wnm_tlv.c │ │ │ ├── wsc.c │ │ │ ├── wsc_tlv.c │ │ │ ├── wsc_ufd.c │ │ │ └── wsc_v2.c │ │ ├── conf │ │ │ ├── RT2860AP.dat │ │ │ ├── RT2860AP.dat_ac │ │ │ ├── RT2860APCard.dat │ │ │ ├── RT2860STA.dat │ │ │ ├── RT2860STACard.dat │ │ │ ├── RT2870AP.dat │ │ │ ├── RT2870APCard.dat │ │ │ ├── RT2870STA.dat │ │ │ └── RT2870STACard.dat │ │ ├── doc │ │ │ ├── History.txt │ │ │ ├── README │ │ │ ├── README_STA_pci │ │ │ ├── README_STA_usb │ │ │ ├── RT2860card.readme │ │ │ ├── RT_WIFI_Revision_History_2010_April.xls │ │ │ ├── VxWorks.README │ │ │ ├── ate_iwpriv_usage.txt │ │ │ ├── brftph_usage.txt │ │ │ ├── iwpriv_usage.txt │ │ │ ├── mbss_phy.readme │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ └── wps_iwpriv_usage.txt │ │ ├── easy_setup │ │ │ ├── ez_hooks.c │ │ │ ├── mt7603_chip_ops.c │ │ │ ├── mt7603_chip_ops_api.c │ │ │ └── mt7603_driver_specific_func.c │ │ ├── eeprom │ │ │ ├── MT7601_USB_V0_D-20130416.bin │ │ │ ├── MT7603E1E2_EEPROM_layout_2014011.bin │ │ │ ├── MT7603E1E2_EEPROM_layout_2014011_ePAeLNA.bin │ │ │ ├── MT7603E1E2_EEPROM_layout_20140226.bin │ │ │ ├── MT7603E1_EEPROM_layout_20131112.bin │ │ │ ├── MT7603E1_EEPROM_layout_20131206.bin │ │ │ ├── MT7603E_EEPROM.bin │ │ │ ├── MT7662E1_EEPROM_layout_20130301.bin │ │ │ ├── MT7662E2_EEPROM_20130412.bin │ │ │ ├── MT7662E2_EEPROM_20130527.bin │ │ │ ├── MT7662E2_EEPROM_20130528.bin │ │ │ └── MT7662E2_EEPROM_20130903_ePA.bin │ │ ├── hif │ │ │ └── hif_pci.c │ │ ├── hw_ctrl │ │ │ ├── cmm_asic.c │ │ │ ├── cmm_asic_mt.c │ │ │ ├── cmm_chip_mt.c │ │ │ ├── coex.c │ │ │ ├── greenap.c │ │ │ └── mt_gpio.c │ │ ├── include │ │ │ ├── a4_conn.h │ │ │ ├── action.h │ │ │ ├── ags.h │ │ │ ├── all_net_event.h │ │ │ ├── ap.h │ │ │ ├── ap_acl_v2.h │ │ │ ├── ap_apcli.h │ │ │ ├── ap_autoChSel.h │ │ │ ├── ap_autoChSel_cmm.h │ │ │ ├── ap_cfg.h │ │ │ ├── ap_diversity.h │ │ │ ├── ap_ids.h │ │ │ ├── ap_mbss.h │ │ │ ├── ap_wds.h │ │ │ ├── band_steering.h │ │ │ ├── band_steering_def.h │ │ │ ├── bn.h │ │ │ ├── br_ftph.h │ │ │ ├── cfg80211.h │ │ │ ├── cfg80211_cmm.h │ │ │ ├── cfg80211extr.h │ │ │ ├── chip │ │ │ │ ├── chip_id.h │ │ │ │ ├── mt7603.h │ │ │ │ ├── mt7628.h │ │ │ │ ├── mt7636.h │ │ │ │ ├── mt76x0.h │ │ │ │ ├── rt65xx.h │ │ │ │ └── rt8592.h │ │ │ ├── chlist.h │ │ │ ├── client_wds.h │ │ │ ├── client_wds_cmm.h │ │ │ ├── cmm_asic_mt.h │ │ │ ├── crypt_aes.h │ │ │ ├── crypt_arc4.h │ │ │ ├── crypt_biginteger.h │ │ │ ├── crypt_bignum.h │ │ │ ├── crypt_dh.h │ │ │ ├── crypt_hmac.h │ │ │ ├── crypt_md5.h │ │ │ ├── crypt_sha2.h │ │ │ ├── cs.h │ │ │ ├── dfs.h │ │ │ ├── diag.h │ │ │ ├── dot11_base.h │ │ │ ├── dot11ac_vht.h │ │ │ ├── dot11i_wpa.h │ │ │ ├── dot11k_rrm.h │ │ │ ├── dot11n_ht.h │ │ │ ├── dot11r_ft.h │ │ │ ├── dot11u_interworking.h │ │ │ ├── dot11v_wnm.h │ │ │ ├── dot11w_pmf.h │ │ │ ├── drs_extr.h │ │ │ ├── easy_setup │ │ │ │ ├── ez_cmm.h │ │ │ │ ├── ez_hooks.h │ │ │ │ ├── ez_hooks_proto.h │ │ │ │ ├── ez_mod_hooks.h │ │ │ │ ├── mt7603_chip_ops.h │ │ │ │ ├── mt7603_chip_ops_api.h │ │ │ │ └── mt7603_driver_specific_func.h │ │ │ ├── ecc.h │ │ │ ├── eeprom.h │ │ │ ├── eeprom │ │ │ │ ├── mt7601_e2p.h │ │ │ │ ├── mt7603_e2p.h │ │ │ │ ├── mt76x2_e2p.h │ │ │ │ └── mt_e2p_def.h │ │ │ ├── efuse.h │ │ │ ├── event_notifier.h │ │ │ ├── event_notifier_old.h │ │ │ ├── firmware.h │ │ │ ├── fpga │ │ │ │ └── fpga_ctl.h │ │ │ ├── frame_hdr.h │ │ │ ├── frq_cal.h │ │ │ ├── ft.h │ │ │ ├── ft_cmm.h │ │ │ ├── gas.h │ │ │ ├── hotspot.h │ │ │ ├── iface │ │ │ │ ├── iface.h │ │ │ │ ├── iface_util.h │ │ │ │ ├── mt_hif_pci_usb.h │ │ │ │ ├── mt_hif_sdio.h │ │ │ │ ├── mt_sdio.h │ │ │ │ ├── rtmp_inf_pcirbs.h │ │ │ │ ├── rtmp_pci.h │ │ │ │ └── rtmp_reg_pcirbs.h │ │ │ ├── igmp_snoop.h │ │ │ ├── ipv6.h │ │ │ ├── link_list.h │ │ │ ├── mac │ │ │ │ ├── mac.h │ │ │ │ ├── mac_mt │ │ │ │ │ ├── client.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ ├── mt_mac_pci.h │ │ │ │ │ ├── mt_mac_sdio.h │ │ │ │ │ ├── mt_mac_usb.h │ │ │ │ │ ├── pse.h │ │ │ │ │ ├── ral_nmac_usb.h │ │ │ │ │ ├── top.h │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ └── wf_wtblon.h │ │ │ │ └── mac_ral │ │ │ │ │ ├── fce.h │ │ │ │ │ ├── mac_pci.h │ │ │ │ │ ├── mac_usb.h │ │ │ │ │ ├── nmac │ │ │ │ │ ├── ral_nmac.h │ │ │ │ │ ├── ral_nmac_pbf.h │ │ │ │ │ ├── ral_nmac_pci.h │ │ │ │ │ ├── ral_nmac_rf_ctrl.h │ │ │ │ │ └── ral_nmac_usb.h │ │ │ │ │ ├── omac │ │ │ │ │ ├── ral_omac.h │ │ │ │ │ ├── ral_omac_pbf.h │ │ │ │ │ ├── ral_omac_pci.h │ │ │ │ │ ├── ral_omac_rf_ctrl.h │ │ │ │ │ └── ral_omac_usb.h │ │ │ │ │ ├── pbf.h │ │ │ │ │ ├── rf_ctrl.h │ │ │ │ │ └── rtmp_mac.h │ │ │ ├── map.h │ │ │ ├── mat.h │ │ │ ├── mbo.h │ │ │ ├── mcu │ │ │ │ ├── andes_core.h │ │ │ │ ├── andes_mt.h │ │ │ │ ├── andes_rlt.h │ │ │ │ ├── btcoex.h │ │ │ │ ├── mcu.h │ │ │ │ ├── mt7601_firmware.h │ │ │ │ ├── mt7603_e2_firmware.h │ │ │ │ ├── mt7603_firmware.h │ │ │ │ ├── mt7636_firmware.h │ │ │ │ ├── mt7636_rom_patch.h │ │ │ │ └── mt7662_rom_patch.h │ │ │ ├── misc.h │ │ │ ├── misc_cmm.h │ │ │ ├── mix_mode.h │ │ │ ├── mlme.h │ │ │ ├── mlme_sys.h │ │ │ ├── mt_io.h │ │ │ ├── mt_ps.h │ │ │ ├── mt_tx_pwr.h │ │ │ ├── mtsdio_data.h │ │ │ ├── mtsdio_io.h │ │ │ ├── mwds.h │ │ │ ├── netif_block.h │ │ │ ├── nfc.h │ │ │ ├── oid.h │ │ │ ├── os │ │ │ │ ├── bb_soc.h │ │ │ │ ├── pkt_meta.h │ │ │ │ ├── rt_drv.h │ │ │ │ ├── rt_linux.h │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ ├── rt_linux_txrx_hook.h │ │ │ │ ├── rt_os.h │ │ │ │ └── trace_linux.h │ │ │ ├── owe_cmm.h │ │ │ ├── phy │ │ │ │ ├── mt76x2_rf.h │ │ │ │ ├── mt_bbp.h │ │ │ │ ├── mt_phy.h │ │ │ │ ├── mt_rf.h │ │ │ │ ├── phy.h │ │ │ │ ├── rlt_bbp.h │ │ │ │ ├── rlt_rf.h │ │ │ │ ├── rtmp_bbp.h │ │ │ │ └── wf_phy_back.h │ │ │ ├── pmf.h │ │ │ ├── pmf_cmm.h │ │ │ ├── radar.h │ │ │ ├── routing_tab.h │ │ │ ├── rrm.h │ │ │ ├── rrm_cmm.h │ │ │ ├── rt_cal.h │ │ │ ├── rt_config.h │ │ │ ├── rt_led.h │ │ │ ├── rt_os_net.h │ │ │ ├── rt_os_util.h │ │ │ ├── rt_txbf.h │ │ │ ├── rtmp.h │ │ │ ├── rtmp_chip.h │ │ │ ├── rtmp_cmd.h │ │ │ ├── rtmp_comm.h │ │ │ ├── rtmp_def.h │ │ │ ├── rtmp_dot11.h │ │ │ ├── rtmp_iface.h │ │ │ ├── rtmp_os.h │ │ │ ├── rtmp_osabl.h │ │ │ ├── rtmp_timer.h │ │ │ ├── rtmp_type.h │ │ │ ├── sae.h │ │ │ ├── sae_cmm.h │ │ │ ├── sniffer │ │ │ │ ├── radiotap.h │ │ │ │ └── sniffer.h │ │ │ ├── sniffer_mib.h │ │ │ ├── spectrum.h │ │ │ ├── spectrum_def.h │ │ │ ├── sta.h │ │ │ ├── sta_cfg.h │ │ │ ├── tx_power.h │ │ │ ├── uapsd.h │ │ │ ├── vendor.h │ │ │ ├── vht.h │ │ │ ├── video.h │ │ │ ├── vr_ikans.h │ │ │ ├── vrut_ubm.h │ │ │ ├── wapi.h │ │ │ ├── wapi_def.h │ │ │ ├── wapi_sms4.h │ │ │ ├── wfa_p2p.h │ │ │ ├── wfd.h │ │ │ ├── wfd_cmm.h │ │ │ ├── wnm.h │ │ │ ├── wnm_cmm.h │ │ │ ├── wpa.h │ │ │ ├── wpa_cmm.h │ │ │ ├── wsc.h │ │ │ └── wsc_tlv.h │ │ ├── license │ │ │ ├── MTK_LICENSE │ │ │ └── NOTICE │ │ ├── mac │ │ │ ├── mt_mac.c │ │ │ ├── ral_nmac.c │ │ │ ├── ral_omac.c │ │ │ └── rtmp_mac.c │ │ ├── mcu │ │ │ ├── andes_core.c │ │ │ ├── andes_mt.c │ │ │ ├── andes_rlt.c │ │ │ ├── bin │ │ │ │ ├── MT7601_formal_1.7.bin │ │ │ │ ├── MT7603_ram_20140305_e2_drv_tv01.bin │ │ │ │ ├── MT7610.bin │ │ │ │ ├── MT7650.bin │ │ │ │ ├── WIFI_RAM_CODE_MT7603_e1.bin │ │ │ │ ├── WIFI_RAM_CODE_MT7603_e2.bin │ │ │ │ ├── WIFI_RAM_CODE_MT7636.bin │ │ │ │ ├── mt7612_patch_e1_hdr.bin │ │ │ │ ├── mt7612_patch_e1_hdr_0417.bin │ │ │ │ ├── mt7636_patch_e1_hdr.bin │ │ │ │ ├── mt7662_firmware_e3_20131211.bin │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P8.bin │ │ │ │ └── mt7662_patch_release_history.xlsx │ │ │ └── mcu.c │ │ ├── mgmt │ │ │ ├── mgmt_dev.c │ │ │ ├── mgmt_entrytb.c │ │ │ ├── mgmt_ht.c │ │ │ ├── mgmt_hw.c │ │ │ └── mgmt_vht.c │ │ ├── naf │ │ │ ├── cso.c │ │ │ ├── net_acc.c │ │ │ └── tso.c │ │ ├── os │ │ │ └── linux │ │ │ │ ├── Kconfig.ap.soc │ │ │ │ ├── Kconfig.ap.usb │ │ │ │ ├── Kconfig.rlt_wifi │ │ │ │ ├── Kconfig.rlt_wifi_ap │ │ │ │ ├── Kconfig.rlt_wifi_sta │ │ │ │ ├── Kconfig.sta.soc │ │ │ │ ├── Kconfig.wifi │ │ │ │ ├── Makefile.4 │ │ │ │ ├── Makefile.4.netif │ │ │ │ ├── Makefile.4.util │ │ │ │ ├── Makefile.6 │ │ │ │ ├── Makefile.6.netif │ │ │ │ ├── Makefile.6.util │ │ │ │ ├── Makefile.ap.soc │ │ │ │ ├── Makefile.ap.usb │ │ │ │ ├── Makefile.clean │ │ │ │ ├── Makefile.libautoprovision.6 │ │ │ │ ├── Makefile.libwapi.4 │ │ │ │ ├── Makefile.libwapi.6 │ │ │ │ ├── Makefile.rlt_wifi_ap │ │ │ │ ├── Makefile.rlt_wifi_sta │ │ │ │ ├── Makefile.sta.soc │ │ │ │ ├── android_priv_cmd.c │ │ │ │ ├── ap_ioctl.c │ │ │ │ ├── bb_soc.c │ │ │ │ ├── br_ftph.c │ │ │ │ ├── config.mk │ │ │ │ ├── config.mk.cfg80211 │ │ │ │ ├── diag.c │ │ │ │ ├── inf_ppa.c │ │ │ │ ├── load │ │ │ │ ├── monitor_mode.c │ │ │ │ ├── multi_main_dev.c │ │ │ │ ├── pci_main_dev.c │ │ │ │ ├── rt_linux.c │ │ │ │ ├── rt_linux_symb.c │ │ │ │ ├── rt_main_dev.c │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ ├── rt_proc.c │ │ │ │ ├── rt_profile.c │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ ├── rt_sdio.c │ │ │ │ ├── rt_symb.c │ │ │ │ ├── rt_txrx_hook.c │ │ │ │ ├── sdio_main_dev.c │ │ │ │ ├── unload │ │ │ │ ├── vr_bdlt.c │ │ │ │ └── vr_ikans.c │ │ ├── phy │ │ │ ├── mt76x2_rf.c │ │ │ ├── mt_phy.c │ │ │ ├── mt_rf.c │ │ │ ├── phy.c │ │ │ ├── rf.c │ │ │ ├── rlt_phy.c │ │ │ ├── rlt_rf.c │ │ │ ├── rt_rf.c │ │ │ └── rtmp_phy.c │ │ ├── rate_ctrl │ │ │ ├── alg_ags.c │ │ │ ├── alg_grp.c │ │ │ ├── alg_legacy.c │ │ │ └── ra_ctrl.c │ │ ├── sniffer │ │ │ ├── sniffer_prism.c │ │ │ └── sniffer_radiotap.c │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── bin2h │ │ │ ├── bin2h.c │ │ │ ├── i.sh │ │ │ ├── mt7662_freq_plan.c │ │ │ ├── mt7662e_ap.sh │ │ │ ├── mt7662e_sta.sh │ │ │ ├── plug_in │ │ │ │ └── Makefile │ │ │ └── r.sh │ │ └── tx_rx │ │ │ ├── hdr_trans.c │ │ │ ├── txs.c │ │ │ ├── wdev.c │ │ │ ├── wdev_rx.c │ │ │ └── wdev_tx.c │ │ └── mt7603_wifi_ap │ │ ├── Kconfig │ │ ├── Kconfig.mt_wifi_ap │ │ ├── Makefile │ │ └── Makefile.mt_wifi_ap ├── mt7612e │ ├── Makefile │ ├── config.in │ └── src │ │ ├── mt76x2 │ │ ├── History.txt │ │ ├── ap │ │ │ ├── ap.c │ │ │ ├── ap_apcli.c │ │ │ ├── ap_apcli_inf.c │ │ │ ├── ap_assoc.c │ │ │ ├── ap_auth.c │ │ │ ├── ap_autoChSel.c │ │ │ ├── ap_band_steering.c │ │ │ ├── ap_cfg.c │ │ │ ├── ap_connect.c │ │ │ ├── ap_data.c │ │ │ ├── ap_dls.c │ │ │ ├── ap_ftkd.c │ │ │ ├── ap_ids.c │ │ │ ├── ap_mbss.c │ │ │ ├── ap_mbss_inf.c │ │ │ ├── ap_mlme.c │ │ │ ├── ap_qload.c │ │ │ ├── ap_repeater.c │ │ │ ├── ap_sanity.c │ │ │ ├── ap_sync.c │ │ │ ├── ap_wds.c │ │ │ ├── ap_wds_inf.c │ │ │ ├── ap_wpa.c │ │ │ ├── apcli_assoc.c │ │ │ ├── apcli_auth.c │ │ │ ├── apcli_ctrl.c │ │ │ └── apcli_sync.c │ │ ├── chips │ │ │ ├── mt76x2.c │ │ │ ├── rt6352.c │ │ │ ├── rt65xx.c │ │ │ ├── rtmp_chip.c │ │ │ └── rtxx_dft.c │ │ ├── common │ │ │ ├── action.c │ │ │ ├── ba_action.c │ │ │ ├── client_wds.c │ │ │ ├── cmm_aes.c │ │ │ ├── cmm_asic.c │ │ │ ├── cmm_cfg.c │ │ │ ├── cmm_cmd.c │ │ │ ├── cmm_cs.c │ │ │ ├── cmm_data.c │ │ │ ├── cmm_data_pci.c │ │ │ ├── cmm_dfs.c │ │ │ ├── cmm_info.c │ │ │ ├── cmm_loft_cal.c │ │ │ ├── cmm_mac_pci.c │ │ │ ├── cmm_mat.c │ │ │ ├── cmm_mat_iparp.c │ │ │ ├── cmm_mat_ipv6.c │ │ │ ├── cmm_mat_pppoe.c │ │ │ ├── cmm_profile.c │ │ │ ├── cmm_radar.c │ │ │ ├── cmm_rf_cal.c │ │ │ ├── cmm_sanity.c │ │ │ ├── cmm_sync.c │ │ │ ├── cmm_tkip.c │ │ │ ├── cmm_txbf.c │ │ │ ├── cmm_txbf_cal.c │ │ │ ├── cmm_video.c │ │ │ ├── cmm_wep.c │ │ │ ├── cmm_wpa.c │ │ │ ├── cmm_wpa_adhoc.c │ │ │ ├── crypt_aes.c │ │ │ ├── crypt_arc4.c │ │ │ ├── crypt_biginteger.c │ │ │ ├── crypt_dh.c │ │ │ ├── crypt_hmac.c │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_sha2.c │ │ │ ├── ee_efuse.c │ │ │ ├── ee_flash.c │ │ │ ├── ee_prom.c │ │ │ ├── eeprom.c │ │ │ ├── frq_cal.c │ │ │ ├── ft.c │ │ │ ├── ft_iocl.c │ │ │ ├── ft_rc.c │ │ │ ├── ft_tlv.c │ │ │ ├── gas.c │ │ │ ├── hotspot.c │ │ │ ├── igmp_snoop.c │ │ │ ├── misc.c │ │ │ ├── mlme.c │ │ │ ├── mwds.c │ │ │ ├── netif_block.c │ │ │ ├── nfc.c │ │ │ ├── pmf.c │ │ │ ├── ps.c │ │ │ ├── routing_tab.c │ │ │ ├── rrm.c │ │ │ ├── rrm_sanity.c │ │ │ ├── rrm_tlv.c │ │ │ ├── rt_channel.c │ │ │ ├── rt_led.c │ │ │ ├── rt_os_util.c │ │ │ ├── rtmp_init.c │ │ │ ├── rtmp_init_inf.c │ │ │ ├── rtmp_swmcu.c │ │ │ ├── rtmp_timer.c │ │ │ ├── scan.c │ │ │ ├── smart_mesh.c │ │ │ ├── spectrum.c │ │ │ ├── sys_log.c │ │ │ ├── txpower.c │ │ │ ├── uapsd.c │ │ │ ├── vht.c │ │ │ ├── wapi.c │ │ │ ├── wapi_crypt.c │ │ │ ├── wapi_sms4.c │ │ │ ├── wfd.c │ │ │ ├── wnm.c │ │ │ ├── wnm_tlv.c │ │ │ ├── wsc.c │ │ │ ├── wsc_tlv.c │ │ │ ├── wsc_ufd.c │ │ │ └── wsc_v2.c │ │ ├── conf │ │ │ ├── RT2860AP.dat │ │ │ ├── RT2860AP.dat_ac │ │ │ ├── RT2860STA.dat │ │ │ └── SingleSKU.dat │ │ ├── doc │ │ │ ├── README_STA_pci │ │ │ ├── ate_iwpriv_usage.txt │ │ │ ├── brftph_usage.txt │ │ │ ├── iwpriv_usage.txt │ │ │ ├── mbss_phy.readme │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ └── wps_iwpriv_usage.txt │ │ ├── eeprom │ │ │ ├── MT7612E3_EEPROM_layout_20131022_2G5G_iPAiLNA_wTSSI_default_slope_offset.bin │ │ │ ├── MT7612E_EEPROM_layout_20131121_2G5G_ePAeLNA_TXTC_off.bin │ │ │ ├── MT7662E1_EEPROM_layout_20130301.bin │ │ │ ├── MT7662E2_EEPROM_20130412.bin │ │ │ ├── MT7662E2_EEPROM_20130527.bin │ │ │ └── MT7662E2_EEPROM_20130903_ePA.bin │ │ ├── hw_ctrl │ │ │ ├── coex.c │ │ │ └── greenap.c │ │ ├── include │ │ │ ├── action.h │ │ │ ├── ags.h │ │ │ ├── ap.h │ │ │ ├── ap_apcli.h │ │ │ ├── ap_autoChSel.h │ │ │ ├── ap_autoChSel_cmm.h │ │ │ ├── ap_cfg.h │ │ │ ├── ap_diversity.h │ │ │ ├── ap_ids.h │ │ │ ├── ap_mbss.h │ │ │ ├── ap_wds.h │ │ │ ├── band_steering.h │ │ │ ├── band_steering_def.h │ │ │ ├── br_ftph.h │ │ │ ├── cfg80211.h │ │ │ ├── cfg80211_cmm.h │ │ │ ├── cfg80211extr.h │ │ │ ├── chip │ │ │ │ ├── chip_id.h │ │ │ │ ├── mt76x2.h │ │ │ │ ├── rt6352.h │ │ │ │ ├── rt65xx.h │ │ │ │ └── rtmp_phy.h │ │ │ ├── chlist.h │ │ │ ├── client_wds.h │ │ │ ├── client_wds_cmm.h │ │ │ ├── crypt_aes.h │ │ │ ├── crypt_arc4.h │ │ │ ├── crypt_biginteger.h │ │ │ ├── crypt_dh.h │ │ │ ├── crypt_hmac.h │ │ │ ├── crypt_md5.h │ │ │ ├── crypt_sha2.h │ │ │ ├── cs.h │ │ │ ├── default_profile.h │ │ │ ├── dfs.h │ │ │ ├── dot11_base.h │ │ │ ├── dot11ac_vht.h │ │ │ ├── dot11i_wpa.h │ │ │ ├── dot11k_rrm.h │ │ │ ├── dot11n_ht.h │ │ │ ├── dot11r_ft.h │ │ │ ├── dot11u_interworking.h │ │ │ ├── dot11v_wnm.h │ │ │ ├── dot11w_pmf.h │ │ │ ├── dot11z_tdls.h │ │ │ ├── drs_extr.h │ │ │ ├── eeprom.h │ │ │ ├── eeprom │ │ │ │ ├── mt7601_e2p.h │ │ │ │ └── mt76x2_e2p.h │ │ │ ├── firmware.h │ │ │ ├── fpga │ │ │ │ └── fpga_ctl.h │ │ │ ├── frame_hdr.h │ │ │ ├── frq_cal.h │ │ │ ├── ft.h │ │ │ ├── ft_cmm.h │ │ │ ├── gas.h │ │ │ ├── hotspot.h │ │ │ ├── iface │ │ │ │ ├── iface_util.h │ │ │ │ ├── rtmp_pci.h │ │ │ │ ├── rtmp_rbs.h │ │ │ │ └── rtmp_reg_pcirbs.h │ │ │ ├── igmp_snoop.h │ │ │ ├── ipv6.h │ │ │ ├── link_list.h │ │ │ ├── mac_ral │ │ │ │ ├── fce.h │ │ │ │ ├── mac_pci.h │ │ │ │ ├── nmac │ │ │ │ │ ├── ral_nmac.h │ │ │ │ │ ├── ral_nmac_pbf.h │ │ │ │ │ ├── ral_nmac_pci.h │ │ │ │ │ ├── ral_nmac_rf_ctrl.h │ │ │ │ │ └── ral_nmac_usb.h │ │ │ │ ├── omac │ │ │ │ │ ├── ral_omac.h │ │ │ │ │ ├── ral_omac_pbf.h │ │ │ │ │ ├── ral_omac_pci.h │ │ │ │ │ ├── ral_omac_rf_ctrl.h │ │ │ │ │ └── ral_omac_usb.h │ │ │ │ ├── pbf.h │ │ │ │ ├── rf_ctrl.h │ │ │ │ └── rtmp_mac.h │ │ │ ├── mat.h │ │ │ ├── mcu │ │ │ │ ├── btcoex.h │ │ │ │ ├── mcu.h │ │ │ │ ├── mcu_and.h │ │ │ │ ├── mt7601_firmware.h │ │ │ │ ├── mt7612_firmware.h │ │ │ │ ├── mt7662_firmware.h │ │ │ │ ├── mt7662_rom_patch.h │ │ │ │ ├── mt7662t_firmware.h │ │ │ │ └── mt7662t_rom_patch.h │ │ │ ├── misc.h │ │ │ ├── misc_cmm.h │ │ │ ├── mlme.h │ │ │ ├── mlme_sys.h │ │ │ ├── mwds.h │ │ │ ├── netif_block.h │ │ │ ├── nfc.h │ │ │ ├── oid.h │ │ │ ├── os │ │ │ │ ├── bb_soc.h │ │ │ │ ├── pkt_meta.h │ │ │ │ ├── rt_drv.h │ │ │ │ ├── rt_linux.h │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ └── rt_os.h │ │ │ ├── phy │ │ │ │ ├── mt_rf.h │ │ │ │ ├── rlt_bbp.h │ │ │ │ └── rtmp_bbp.h │ │ │ ├── pmf.h │ │ │ ├── pmf_cmm.h │ │ │ ├── radar.h │ │ │ ├── routing_tab.h │ │ │ ├── rrm.h │ │ │ ├── rrm_cmm.h │ │ │ ├── rt_cal.h │ │ │ ├── rt_config.h │ │ │ ├── rt_led.h │ │ │ ├── rt_os_net.h │ │ │ ├── rt_os_util.h │ │ │ ├── rt_txbf.h │ │ │ ├── rtmp.h │ │ │ ├── rtmp_chip.h │ │ │ ├── rtmp_cmd.h │ │ │ ├── rtmp_comm.h │ │ │ ├── rtmp_def.h │ │ │ ├── rtmp_dot11.h │ │ │ ├── rtmp_iface.h │ │ │ ├── rtmp_os.h │ │ │ ├── rtmp_osabl.h │ │ │ ├── rtmp_timer.h │ │ │ ├── rtmp_type.h │ │ │ ├── smart_mesh │ │ │ │ ├── smart_mesh_def.h │ │ │ │ └── smart_mesh_func.h │ │ │ ├── sniffer │ │ │ │ ├── ppi.h │ │ │ │ ├── radiotap.h │ │ │ │ └── sniffer.h │ │ │ ├── spectrum.h │ │ │ ├── spectrum_def.h │ │ │ ├── sta.h │ │ │ ├── sta_cfg.h │ │ │ ├── tdls.h │ │ │ ├── tdls_cmm.h │ │ │ ├── tdls_uapsd.h │ │ │ ├── uapsd.h │ │ │ ├── vht.h │ │ │ ├── video.h │ │ │ ├── vr_ikans.h │ │ │ ├── vrut_ubm.h │ │ │ ├── wapi.h │ │ │ ├── wapi_def.h │ │ │ ├── wapi_sms4.h │ │ │ ├── wfa_p2p.h │ │ │ ├── wfd.h │ │ │ ├── wfd_cmm.h │ │ │ ├── wnm.h │ │ │ ├── wnm_cmm.h │ │ │ ├── wpa.h │ │ │ ├── wpa_cmm.h │ │ │ ├── wsc.h │ │ │ └── wsc_tlv.h │ │ ├── mac │ │ │ ├── ral_nmac.c │ │ │ ├── ral_omac.c │ │ │ └── rtmp_mac.c │ │ ├── mcu │ │ │ ├── bin │ │ │ │ ├── mt7662_firmware_e3_v1.8.bin │ │ │ │ ├── mt7662_firmware_e3_v1.9.bin │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P48.bin │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P69.bin │ │ │ │ ├── mt7662_patch_release_history.xlsx │ │ │ │ ├── mt7662t_firmware_e1.bin │ │ │ │ └── mt7662t_patch_e1_hdr.bin │ │ │ ├── mcu.c │ │ │ └── mcu_and.c │ │ ├── mgmt │ │ │ ├── mgmt_dev.c │ │ │ ├── mgmt_entrytb.c │ │ │ ├── mgmt_ht.c │ │ │ ├── mgmt_hw.c │ │ │ └── mgmt_vht.c │ │ ├── naf │ │ │ ├── cso.c │ │ │ ├── net_acc.c │ │ │ └── tso.c │ │ ├── os │ │ │ └── linux │ │ │ │ ├── android_priv_cmd.c │ │ │ │ ├── ap_ioctl.c │ │ │ │ ├── bb_soc.c │ │ │ │ ├── br_ftph.c │ │ │ │ ├── cfg80211 │ │ │ │ ├── cfg80211.c │ │ │ │ ├── cfg80211_ap.c │ │ │ │ ├── cfg80211_inf.c │ │ │ │ ├── cfg80211_p2p.c │ │ │ │ ├── cfg80211_rx.c │ │ │ │ ├── cfg80211_scan.c │ │ │ │ ├── cfg80211_tdls.c │ │ │ │ ├── cfg80211_tx.c │ │ │ │ ├── cfg80211_util.c │ │ │ │ └── cfg80211drv.c │ │ │ │ ├── inf_ppa.c │ │ │ │ ├── multi_main_dev.c │ │ │ │ ├── pci_main_dev.c │ │ │ │ ├── rbus_main_dev.c │ │ │ │ ├── rt_linux.c │ │ │ │ ├── rt_linux_symb.c │ │ │ │ ├── rt_main_dev.c │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ ├── rt_proc.c │ │ │ │ ├── rt_profile.c │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ ├── rt_symb.c │ │ │ │ ├── sta_ioctl.c │ │ │ │ ├── vr_bdlt.c │ │ │ │ └── vr_ikans.c │ │ ├── phy │ │ │ ├── mt_rf.c │ │ │ ├── phy.c │ │ │ ├── rf.c │ │ │ ├── rlt_phy.c │ │ │ ├── rlt_rf.c │ │ │ ├── rt_rf.c │ │ │ └── rtmp_phy.c │ │ ├── rate_ctrl │ │ │ ├── alg_ags.c │ │ │ ├── alg_grp.c │ │ │ ├── alg_legacy.c │ │ │ └── ra_ctrl.c │ │ ├── sniffer │ │ │ ├── sniffer_prism.c │ │ │ └── sniffer_radiotap.c │ │ ├── sta │ │ │ ├── assoc.c │ │ │ ├── auth.c │ │ │ ├── auth_rsp.c │ │ │ ├── connect.c │ │ │ ├── dls.c │ │ │ ├── ft_action.c │ │ │ ├── ft_auth.c │ │ │ ├── rtmp_ckipmic.c │ │ │ ├── rtmp_data.c │ │ │ ├── sanity.c │ │ │ ├── sta.c │ │ │ ├── sta_cfg.c │ │ │ ├── sta_iwsc.c │ │ │ ├── sync.c │ │ │ ├── tdls.c │ │ │ ├── tdls_chswitch_mng.c │ │ │ ├── tdls_ctrl.c │ │ │ ├── tdls_link_mng.c │ │ │ ├── tdls_tlv.c │ │ │ ├── tdls_uapsd.c │ │ │ └── wpa.c │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── bin2h.c │ │ │ ├── dat2h.c │ │ │ ├── mt7662_freq_plan.c │ │ │ ├── mt7662e_ap.sh │ │ │ └── mt7662e_sta.sh │ │ └── tx_rx │ │ │ └── wdev_tx.c │ │ └── mt76x2_ap │ │ ├── Kconfig │ │ └── Makefile ├── mt7615d │ ├── Makefile │ ├── config.in │ ├── files │ │ ├── etc │ │ │ └── uci-defaults │ │ │ │ └── 10_mt7615_dbdc │ │ └── lib │ │ │ ├── netifd │ │ │ └── wireless │ │ │ │ └── mt_dbdc.sh │ │ │ └── wifi │ │ │ └── mt_dbdc.sh │ └── src │ │ ├── bin │ │ ├── mt7615 │ │ │ ├── MT7615E1_EEPROM.bin │ │ │ ├── MT7615_cr4.bin │ │ │ ├── MT7615_cr4_noReOrdering.bin │ │ │ ├── MT7615_cr4_plain.bin │ │ │ ├── MT7615_cr4_plain_20141024_1.bin │ │ │ ├── MT7615_cr4_plain_20150206_1_asic.bin │ │ │ ├── WIFI_RAM_CODE_MT7615.bin │ │ │ ├── WIFI_RAM_CODE_MT7615_E1.bin │ │ │ ├── WIFI_RAM_CODE_MT7615_plain.bin │ │ │ ├── ePAeLNA │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ ├── ePAiLNA │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ ├── iPAeLNA │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ ├── iPAiLNA │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ └── mt7615_patch_e3_hdr.bin │ │ └── mt7622 │ │ │ ├── MT7622_EEPROM.bin │ │ │ ├── WIFI_RAM_CODE_MT7622_E2.bin │ │ │ ├── ePAeLNA │ │ │ └── MT7622_EEPROM.bin │ │ │ ├── iPAeLNA │ │ │ └── MT7622_EEPROM.bin │ │ │ ├── iPAiLNA │ │ │ └── MT7622_EEPROM.bin │ │ │ └── mt7622_patch_e2_hdr.bin │ │ ├── mt_wifi │ │ ├── ate │ │ │ ├── LoopBack.c │ │ │ ├── ate_agent.c │ │ │ ├── include │ │ │ │ ├── LoopBack.h │ │ │ │ ├── ate.h │ │ │ │ ├── ate_agent.h │ │ │ │ ├── meta_agent.h │ │ │ │ ├── mt_testmode.h │ │ │ │ ├── mt_testmode_dmac.h │ │ │ │ ├── mt_testmode_smac.h │ │ │ │ ├── qa_agent.h │ │ │ │ ├── testmode_common.h │ │ │ │ └── testmode_ioctl.h │ │ │ ├── meta_agent.c │ │ │ ├── mt_mac │ │ │ │ ├── mt_ate.c │ │ │ │ ├── mt_testmode.c │ │ │ │ ├── mt_testmode_dmac.c │ │ │ │ └── mt_testmode_smac.c │ │ │ ├── qa_agent.c │ │ │ └── testmode_ioctl.c │ │ ├── chips │ │ │ ├── mt7615.c │ │ │ ├── mt7615_dbg.c │ │ │ ├── mt7622.c │ │ │ ├── mt7622_dbg.c │ │ │ └── rtmp_chip.c │ │ ├── embedded │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── Pack_Release.sh │ │ │ ├── Release.sh │ │ │ ├── Release_Notes.txt │ │ │ ├── ap │ │ │ │ ├── ap.c │ │ │ │ ├── ap_apcli.c │ │ │ │ ├── ap_apcli_inf.c │ │ │ │ ├── ap_assoc.c │ │ │ │ ├── ap_auth.c │ │ │ │ ├── ap_autoChSel.c │ │ │ │ ├── ap_band_steering.c │ │ │ │ ├── ap_cfg.c │ │ │ │ ├── ap_data.c │ │ │ │ ├── ap_ftkd.c │ │ │ │ ├── ap_ids.c │ │ │ │ ├── ap_mbss.c │ │ │ │ ├── ap_mbss_inf.c │ │ │ │ ├── ap_mlme.c │ │ │ │ ├── ap_mumimo.c │ │ │ │ ├── ap_mura.c │ │ │ │ ├── ap_nps.c │ │ │ │ ├── ap_qload.c │ │ │ │ ├── ap_repeater.c │ │ │ │ ├── ap_sanity.c │ │ │ │ ├── ap_sec.c │ │ │ │ ├── ap_sync.c │ │ │ │ ├── ap_vow.c │ │ │ │ ├── ap_wds.c │ │ │ │ ├── ap_wds_inf.c │ │ │ │ ├── ap_wpa.c │ │ │ │ ├── apcli_assoc.c │ │ │ │ ├── apcli_auth.c │ │ │ │ ├── apcli_ctrl.c │ │ │ │ ├── apcli_link_cover.c │ │ │ │ └── apcli_sync.c │ │ │ ├── common │ │ │ │ ├── a4_conn.c │ │ │ │ ├── action.c │ │ │ │ ├── ba_action.c │ │ │ │ ├── bcn.c │ │ │ │ ├── bgnd_scan.c │ │ │ │ ├── client_wds.c │ │ │ │ ├── cmm_cfg.c │ │ │ │ ├── cmm_cmd.c │ │ │ │ ├── cmm_cs.c │ │ │ │ ├── cmm_data.c │ │ │ │ ├── cmm_info.c │ │ │ │ ├── cmm_info_element.c │ │ │ │ ├── cmm_mac_pci.c │ │ │ │ ├── cmm_mat.c │ │ │ │ ├── cmm_mat_iparp.c │ │ │ │ ├── cmm_mat_ipv6.c │ │ │ │ ├── cmm_mat_pppoe.c │ │ │ │ ├── cmm_mumimo.c │ │ │ │ ├── cmm_profile.c │ │ │ │ ├── cmm_radar.c │ │ │ │ ├── cmm_rdm_mt.c │ │ │ │ ├── cmm_rf_cal.c │ │ │ │ ├── cmm_rvr_dbg.c │ │ │ │ ├── cmm_sanity.c │ │ │ │ ├── cmm_sync.c │ │ │ │ ├── cmm_tcprack.c │ │ │ │ ├── cmm_txbf.c │ │ │ │ ├── cmm_video.c │ │ │ │ ├── cut_through.c │ │ │ │ ├── ee_efuse.c │ │ │ │ ├── ee_flash.c │ │ │ │ ├── ee_prom.c │ │ │ │ ├── eeprom.c │ │ │ │ ├── fp_fair_qm.c │ │ │ │ ├── fp_qm.c │ │ │ │ ├── fpga.c │ │ │ │ ├── fq_qm.c │ │ │ │ ├── ft.c │ │ │ │ ├── ft_iocl.c │ │ │ │ ├── ft_rc.c │ │ │ │ ├── ft_tlv.c │ │ │ │ ├── ftm.c │ │ │ │ ├── gas.c │ │ │ │ ├── hif_pci.c │ │ │ │ ├── hotspot.c │ │ │ │ ├── icap.c │ │ │ │ ├── igmp_snoop.c │ │ │ │ ├── map.c │ │ │ │ ├── mbo.c │ │ │ │ ├── misc_app.c │ │ │ │ ├── mlme.c │ │ │ │ ├── mt_io.c │ │ │ │ ├── mt_ps.c │ │ │ │ ├── multi_channel.c │ │ │ │ ├── multi_profile.c │ │ │ │ ├── netif_block.c │ │ │ │ ├── nfc.c │ │ │ │ ├── op_class.c │ │ │ │ ├── ps.c │ │ │ │ ├── qm.c │ │ │ │ ├── ra_ac_q_mgmt.c │ │ │ │ ├── ral_ps.c │ │ │ │ ├── routing_tab.c │ │ │ │ ├── rrm.c │ │ │ │ ├── rrm_sanity.c │ │ │ │ ├── rrm_tlv.c │ │ │ │ ├── rt_channel.c │ │ │ │ ├── rt_led.c │ │ │ │ ├── rt_os_util.c │ │ │ │ ├── rtmp_init.c │ │ │ │ ├── rtmp_init_inf.c │ │ │ │ ├── rtmp_timer.c │ │ │ │ ├── scan.c │ │ │ │ ├── scs.c │ │ │ │ ├── smartant.c │ │ │ │ ├── sniffer_prism.c │ │ │ │ ├── sniffer_radiotap.c │ │ │ │ ├── spectrum.c │ │ │ │ ├── sys_log.c │ │ │ │ ├── txpower.c │ │ │ │ ├── txs.c │ │ │ │ ├── uapsd.c │ │ │ │ ├── vendor.c │ │ │ │ ├── verf.c │ │ │ │ ├── vht.c │ │ │ │ ├── wdev.c │ │ │ │ ├── wifi_sys_info.c │ │ │ │ ├── wifi_sys_notify.c │ │ │ │ ├── wnm.c │ │ │ │ ├── wsc.c │ │ │ │ ├── wsc_tlv.c │ │ │ │ ├── wsc_ufd.c │ │ │ │ └── wsc_v2.c │ │ │ ├── doc │ │ │ │ ├── Doxyfile │ │ │ │ ├── FirmwareHistory.txt │ │ │ │ ├── History.txt │ │ │ │ ├── History_sta_pci.txt │ │ │ │ ├── History_sta_usb.txt │ │ │ │ ├── README │ │ │ │ ├── README_STA_pci │ │ │ │ ├── README_STA_usb │ │ │ │ ├── RT2860card.readme │ │ │ │ ├── RT_WIFI_Revision_History_2010_April.xls │ │ │ │ ├── VxWorks.README │ │ │ │ ├── ate_iwpriv_usage.txt │ │ │ │ ├── brftph_usage.txt │ │ │ │ ├── header_translation.txt │ │ │ │ ├── iwpriv_usage.txt │ │ │ │ ├── mainpage.dox │ │ │ │ ├── mbss_phy.readme │ │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ │ └── wps_iwpriv_usage.txt │ │ │ ├── hw_ctrl │ │ │ │ ├── hdev │ │ │ │ │ ├── hdev_basic.c │ │ │ │ │ ├── omac_ctrl.c │ │ │ │ │ ├── radio_ctrl.c │ │ │ │ │ ├── wmm_ctrl.c │ │ │ │ │ └── wtbl_ctrl.c │ │ │ │ ├── hdev_ctrl.c │ │ │ │ ├── hw_ctrl.c │ │ │ │ ├── hw_ctrl_basic.c │ │ │ │ ├── hw_ctrl_cmd.c │ │ │ │ ├── hw_ctrl_ops_v1.c │ │ │ │ └── hw_ctrl_ops_v2.c │ │ │ ├── include │ │ │ │ ├── a4_conn.h │ │ │ │ ├── action.h │ │ │ │ ├── ags.h │ │ │ │ ├── ap.h │ │ │ │ ├── ap_apcli.h │ │ │ │ ├── ap_autoChSel.h │ │ │ │ ├── ap_autoChSel_cmm.h │ │ │ │ ├── ap_cfg.h │ │ │ │ ├── ap_ids.h │ │ │ │ ├── ap_mbss.h │ │ │ │ ├── ap_mumimo.h │ │ │ │ ├── ap_mura.h │ │ │ │ ├── ap_repeater.h │ │ │ │ ├── ap_vow.h │ │ │ │ ├── ap_wds.h │ │ │ │ ├── arris_mod_api.h │ │ │ │ ├── arris_wps_gpio_handler.h │ │ │ │ ├── band_steering.h │ │ │ │ ├── band_steering_def.h │ │ │ │ ├── bcn.h │ │ │ │ ├── bgnd_scan.h │ │ │ │ ├── bgnd_scan_cmm.h │ │ │ │ ├── br_ftph.h │ │ │ │ ├── cfg80211.h │ │ │ │ ├── cfg80211_cmm.h │ │ │ │ ├── cfg80211extr.h │ │ │ │ ├── chlist.h │ │ │ │ ├── client_wds.h │ │ │ │ ├── client_wds_cmm.h │ │ │ │ ├── cmm_cmd.h │ │ │ │ ├── cmm_rvr_dbg.h │ │ │ │ ├── cmm_tcprack.h │ │ │ │ ├── cs.h │ │ │ │ ├── cut_through.h │ │ │ │ ├── dot11_base.h │ │ │ │ ├── dot11ac_vht.h │ │ │ │ ├── dot11k_rrm.h │ │ │ │ ├── dot11n_ht.h │ │ │ │ ├── dot11r_ft.h │ │ │ │ ├── dot11u_interworking.h │ │ │ │ ├── dot11v_wnm.h │ │ │ │ ├── eeprom.h │ │ │ │ ├── eeprom │ │ │ │ │ ├── mt7615_e2p_ePAeLNA.h │ │ │ │ │ ├── mt7615_e2p_ePAiLNA.h │ │ │ │ │ ├── mt7615_e2p_iPAeLNA.h │ │ │ │ │ ├── mt7615_e2p_iPAiLNA.h │ │ │ │ │ ├── mt7622_e2p_ePAeLNA.h │ │ │ │ │ ├── mt7622_e2p_iPAeLNA.h │ │ │ │ │ ├── mt7622_e2p_iPAiLNA.h │ │ │ │ │ ├── mt7663_e2p.h │ │ │ │ │ ├── mt_dmac_e2p_def.h │ │ │ │ │ └── mt_e2p_def.h │ │ │ │ ├── efuse.h │ │ │ │ ├── event_common.h │ │ │ │ ├── firmware.h │ │ │ │ ├── fp_qm.h │ │ │ │ ├── fq_qm.h │ │ │ │ ├── frame_hdr.h │ │ │ │ ├── frq_cal.h │ │ │ │ ├── fsm │ │ │ │ │ └── fsm_sync.h │ │ │ │ ├── ft.h │ │ │ │ ├── ft_cmm.h │ │ │ │ ├── ftm.h │ │ │ │ ├── ftm_cmm.h │ │ │ │ ├── gas.h │ │ │ │ ├── hdev │ │ │ │ │ ├── hdev.h │ │ │ │ │ └── hdev_basic.h │ │ │ │ ├── hdev_ctrl.h │ │ │ │ ├── hotspot.h │ │ │ │ ├── hw_ctrl.h │ │ │ │ ├── hw_ctrl_basic.h │ │ │ │ ├── icap.h │ │ │ │ ├── iface │ │ │ │ │ ├── iface.h │ │ │ │ │ ├── iface_util.h │ │ │ │ │ ├── mtk_hif.h │ │ │ │ │ ├── rtmp_inf_pcirbs.h │ │ │ │ │ ├── rtmp_pci.h │ │ │ │ │ └── rtmp_rbs.h │ │ │ │ ├── igmp_snoop.h │ │ │ │ ├── ipv6.h │ │ │ │ ├── l1profile.h │ │ │ │ ├── map.h │ │ │ │ ├── mat.h │ │ │ │ ├── mbo.h │ │ │ │ ├── mcu │ │ │ │ │ ├── andes_core.h │ │ │ │ │ ├── andes_mt.h │ │ │ │ │ ├── btcoex.h │ │ │ │ │ ├── mcu.h │ │ │ │ │ ├── mt7615_cr4_firmware.h │ │ │ │ │ ├── mt7615_firmware.h │ │ │ │ │ ├── mt7615_firmware_e1.h │ │ │ │ │ ├── mt7615_rom_patch.h │ │ │ │ │ ├── mt7615_rom_patch_e1.h │ │ │ │ │ ├── mt7622_firmware.h │ │ │ │ │ ├── mt7622_firmware_e2.h │ │ │ │ │ └── mt7622_rom_patch_e2.h │ │ │ │ ├── meminfo_list.h │ │ │ │ ├── mgmt │ │ │ │ │ ├── be_export.h │ │ │ │ │ └── be_internal.h │ │ │ │ ├── misc_app.h │ │ │ │ ├── mlme.h │ │ │ │ ├── mlme_sys.h │ │ │ │ ├── mt_io.h │ │ │ │ ├── mt_rdm.h │ │ │ │ ├── netif_block.h │ │ │ │ ├── nfc.h │ │ │ │ ├── oid.h │ │ │ │ ├── oid_struct.h │ │ │ │ ├── qm.h │ │ │ │ ├── ra_ac_q_mgmt.h │ │ │ │ ├── radar.h │ │ │ │ ├── routing_tab.h │ │ │ │ ├── rrm.h │ │ │ │ ├── rrm_cmm.h │ │ │ │ ├── rt_cal.h │ │ │ │ ├── rt_config.h │ │ │ │ ├── rt_led.h │ │ │ │ ├── rt_os_net.h │ │ │ │ ├── rt_os_util.h │ │ │ │ ├── rt_txbf.h │ │ │ │ ├── rt_udma.h │ │ │ │ ├── rtmp.h │ │ │ │ ├── rtmp_chip.h │ │ │ │ ├── rtmp_cmd.h │ │ │ │ ├── rtmp_comm.h │ │ │ │ ├── rtmp_def.h │ │ │ │ ├── rtmp_dmacb.h │ │ │ │ ├── rtmp_dot11.h │ │ │ │ ├── rtmp_iface.h │ │ │ │ ├── rtmp_os.h │ │ │ │ ├── rtmp_osabl.h │ │ │ │ ├── rtmp_timer.h │ │ │ │ ├── rtmp_type.h │ │ │ │ ├── scs.h │ │ │ │ ├── security │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── crypt_aes.h │ │ │ │ │ ├── crypt_arc4.h │ │ │ │ │ ├── crypt_biginteger.h │ │ │ │ │ ├── crypt_bignum.h │ │ │ │ │ ├── crypt_dh.h │ │ │ │ │ ├── crypt_hmac.h │ │ │ │ │ ├── crypt_md5.h │ │ │ │ │ ├── crypt_sha2.h │ │ │ │ │ ├── dh_key.h │ │ │ │ │ ├── dot11i_wpa.h │ │ │ │ │ ├── dot11w_pmf.h │ │ │ │ │ ├── ecc.h │ │ │ │ │ ├── owe_cmm.h │ │ │ │ │ ├── pmf.h │ │ │ │ │ ├── pmf_cmm.h │ │ │ │ │ ├── sae.h │ │ │ │ │ ├── sae_cmm.h │ │ │ │ │ ├── sec.h │ │ │ │ │ ├── sec_cmm.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wpa_cmm.h │ │ │ │ ├── smartant.h │ │ │ │ ├── sniffer │ │ │ │ │ ├── radiotap.h │ │ │ │ │ └── sniffer.h │ │ │ │ ├── spectrum.h │ │ │ │ ├── spectrum_def.h │ │ │ │ ├── sta.h │ │ │ │ ├── sta_cfg.h │ │ │ │ ├── tm.h │ │ │ │ ├── tr.h │ │ │ │ ├── tx_power.h │ │ │ │ ├── uapsd.h │ │ │ │ ├── vendor.h │ │ │ │ ├── vht.h │ │ │ │ ├── video.h │ │ │ │ ├── vr_ikans.h │ │ │ │ ├── vrut_ubm.h │ │ │ │ ├── wapp │ │ │ │ │ ├── wapp.h │ │ │ │ │ └── wapp_cmm_type.h │ │ │ │ ├── wfa_p2p.h │ │ │ │ ├── wifi_sys_notify.h │ │ │ │ ├── wlan_config │ │ │ │ │ ├── config_export.h │ │ │ │ │ └── config_internal.h │ │ │ │ ├── wnm.h │ │ │ │ ├── wnm_cmm.h │ │ │ │ ├── wsc.h │ │ │ │ └── wsc_tlv.h │ │ │ ├── mcu │ │ │ │ ├── andes_core.c │ │ │ │ ├── andes_mt.c │ │ │ │ └── mcu.c │ │ │ ├── mgmt │ │ │ │ ├── be_basic.c │ │ │ │ ├── be_ht.c │ │ │ │ ├── be_phy.c │ │ │ │ ├── be_vht.c │ │ │ │ ├── bss_ops.c │ │ │ │ ├── mgmt_dev.c │ │ │ │ ├── mgmt_entrytb.c │ │ │ │ ├── mgmt_ht.c │ │ │ │ ├── mgmt_hw.c │ │ │ │ └── mgmt_vht.c │ │ │ ├── plug_in │ │ │ │ ├── Makefile │ │ │ │ └── whnat │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── wdma.c │ │ │ │ │ ├── wdma.h │ │ │ │ │ ├── wed.c │ │ │ │ │ ├── wed.h │ │ │ │ │ ├── wed_def.h │ │ │ │ │ ├── woe.h │ │ │ │ │ ├── woe_basic.c │ │ │ │ │ ├── woe_basic.h │ │ │ │ │ ├── woe_hif.c │ │ │ │ │ ├── woe_hif.h │ │ │ │ │ ├── woe_hw.c │ │ │ │ │ ├── woe_hw.h │ │ │ │ │ ├── woe_main.c │ │ │ │ │ ├── woe_mt7615.c │ │ │ │ │ ├── woe_mt7615.h │ │ │ │ │ ├── woe_proc.c │ │ │ │ │ ├── woe_ser.c │ │ │ │ │ └── woe_wifi.h │ │ │ ├── security │ │ │ │ ├── bn_lib.c │ │ │ │ ├── cmm_aes.c │ │ │ │ ├── cmm_sec.c │ │ │ │ ├── cmm_tkip.c │ │ │ │ ├── cmm_wep.c │ │ │ │ ├── cmm_wpa.c │ │ │ │ ├── crypt_aes.c │ │ │ │ ├── crypt_arc4.c │ │ │ │ ├── crypt_biginteger.c │ │ │ │ ├── crypt_bignum.c │ │ │ │ ├── crypt_dh.c │ │ │ │ ├── crypt_hmac.c │ │ │ │ ├── crypt_md5.c │ │ │ │ ├── crypt_sha2.c │ │ │ │ ├── dh_key.c │ │ │ │ ├── ecc.c │ │ │ │ ├── owe.c │ │ │ │ ├── pmf.c │ │ │ │ └── sae.c │ │ │ ├── tools │ │ │ │ ├── Makefile │ │ │ │ ├── auto_build_kernel_4_4.sh │ │ │ │ ├── bin2h │ │ │ │ ├── bin2h.c │ │ │ │ ├── build-check-jedi.sh │ │ │ │ ├── check_build_script.sh │ │ │ │ ├── i.sh │ │ │ │ ├── mt7662_freq_plan.c │ │ │ │ ├── mt7662e_ap.sh │ │ │ │ ├── mt7662e_sta.sh │ │ │ │ └── r.sh │ │ │ ├── unload │ │ │ ├── wapp │ │ │ │ └── wapp.c │ │ │ └── wlan_config │ │ │ │ ├── config_basic.c │ │ │ │ ├── config_ht.c │ │ │ │ ├── config_phy.c │ │ │ │ └── config_vht.c │ │ ├── hw_ctrl │ │ │ ├── cmm_asic.c │ │ │ ├── cmm_asic_mt.c │ │ │ ├── cmm_asic_mt_dmac.c │ │ │ ├── cmm_asic_mt_fw.c │ │ │ ├── cmm_chip.c │ │ │ ├── cmm_chip_mt.c │ │ │ ├── coex.c │ │ │ ├── greenap.c │ │ │ ├── hw_init.c │ │ │ └── mt_gpio.c │ │ ├── include │ │ │ ├── chip │ │ │ │ ├── chip_id.h │ │ │ │ ├── mt7615.h │ │ │ │ ├── mt7615_cr.h │ │ │ │ ├── mt7622.h │ │ │ │ ├── mt7622_cr.h │ │ │ │ ├── mt7663_cr.h │ │ │ │ └── p18_cr.h │ │ │ ├── common │ │ │ │ ├── debug.h │ │ │ │ ├── link_list.h │ │ │ │ ├── module.h │ │ │ │ ├── mt_os_util.h │ │ │ │ └── wifi_sys_info.h │ │ │ ├── eeprom │ │ │ │ └── mt_tx_pwr.h │ │ │ ├── hif │ │ │ │ ├── hif.h │ │ │ │ └── mt_hif_pci.h │ │ │ ├── hw_ctrl │ │ │ │ ├── cmm_asic.h │ │ │ │ ├── cmm_asic_mt.h │ │ │ │ ├── cmm_asic_mt_fw.h │ │ │ │ ├── cmm_chip.h │ │ │ │ └── hw_init.h │ │ │ ├── mac │ │ │ │ ├── mac.h │ │ │ │ └── mac_mt │ │ │ │ │ ├── dmac │ │ │ │ │ ├── client.h │ │ │ │ │ ├── dma_sch.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── hw_amsdu.h │ │ │ │ │ ├── mt_dmac.h │ │ │ │ │ ├── pse.h │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ ├── wf_cfg.h │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ ├── wf_etbf.h │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ ├── wf_mu.h │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ ├── wf_ple.h │ │ │ │ │ ├── wf_pp.h │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ └── wf_wtblon.h │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ ├── mt_mac_ctrl.h │ │ │ │ │ ├── mt_mac_pci.h │ │ │ │ │ ├── smac │ │ │ │ │ ├── client.h │ │ │ │ │ ├── dma_sch.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ ├── mt_smac.h │ │ │ │ │ ├── pse.h │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ └── wf_wtblon.h │ │ │ │ │ └── top.h │ │ │ ├── mcu │ │ │ │ ├── fwdl.h │ │ │ │ ├── mt_cmd.h │ │ │ │ └── mt_fdb.h │ │ │ ├── os │ │ │ │ ├── bb_soc.h │ │ │ │ ├── diag.h │ │ │ │ ├── pkt_meta.h │ │ │ │ ├── rt_drv.h │ │ │ │ ├── rt_ecos_type.h │ │ │ │ ├── rt_linux.h │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ ├── rt_linux_txrx_hook.h │ │ │ │ ├── rt_os.h │ │ │ │ ├── rt_win.h │ │ │ │ ├── rt_wince.h │ │ │ │ ├── trace.h │ │ │ │ └── wbsys_res.h │ │ │ ├── phy │ │ │ │ ├── mt_bbp.h │ │ │ │ ├── mt_phy.h │ │ │ │ ├── mt_rf.h │ │ │ │ ├── phy.h │ │ │ │ ├── rlm_cal_cache.h │ │ │ │ └── wf_phy_back.h │ │ │ ├── protocol │ │ │ │ ├── protection.h │ │ │ │ └── tmr.h │ │ │ ├── rate_ctrl │ │ │ │ └── ra_ctrl.h │ │ │ ├── txbf │ │ │ │ ├── mt_txbf.h │ │ │ │ └── mt_txbf_cal.h │ │ │ └── txpwr │ │ │ │ ├── BFBackoffTable_1.h │ │ │ │ ├── BFBackoffTable_10.h │ │ │ │ ├── BFBackoffTable_11.h │ │ │ │ ├── BFBackoffTable_12.h │ │ │ │ ├── BFBackoffTable_13.h │ │ │ │ ├── BFBackoffTable_14.h │ │ │ │ ├── BFBackoffTable_15.h │ │ │ │ ├── BFBackoffTable_16.h │ │ │ │ ├── BFBackoffTable_17.h │ │ │ │ ├── BFBackoffTable_18.h │ │ │ │ ├── BFBackoffTable_19.h │ │ │ │ ├── BFBackoffTable_2.h │ │ │ │ ├── BFBackoffTable_20.h │ │ │ │ ├── BFBackoffTable_3.h │ │ │ │ ├── BFBackoffTable_4.h │ │ │ │ ├── BFBackoffTable_5.h │ │ │ │ ├── BFBackoffTable_6.h │ │ │ │ ├── BFBackoffTable_7.h │ │ │ │ ├── BFBackoffTable_8.h │ │ │ │ ├── BFBackoffTable_9.h │ │ │ │ ├── SKUTable_1.h │ │ │ │ ├── SKUTable_10.h │ │ │ │ ├── SKUTable_11.h │ │ │ │ ├── SKUTable_12.h │ │ │ │ ├── SKUTable_13.h │ │ │ │ ├── SKUTable_14.h │ │ │ │ ├── SKUTable_15.h │ │ │ │ ├── SKUTable_16.h │ │ │ │ ├── SKUTable_17.h │ │ │ │ ├── SKUTable_18.h │ │ │ │ ├── SKUTable_19.h │ │ │ │ ├── SKUTable_2.h │ │ │ │ ├── SKUTable_20.h │ │ │ │ ├── SKUTable_3.h │ │ │ │ ├── SKUTable_4.h │ │ │ │ ├── SKUTable_5.h │ │ │ │ ├── SKUTable_6.h │ │ │ │ ├── SKUTable_7.h │ │ │ │ ├── SKUTable_8.h │ │ │ │ ├── SKUTable_9.h │ │ │ │ └── single_sku.h │ │ ├── license │ │ │ ├── MTK_LICENSE │ │ │ └── NOTICE │ │ ├── mac │ │ │ ├── mt_dmac.c │ │ │ └── mt_mac.c │ │ ├── mcu │ │ │ ├── fw_cmd.c │ │ │ ├── fwdl.c │ │ │ ├── fwdl_mt.c │ │ │ ├── mt_cmd.c │ │ │ └── mt_fdb.c │ │ ├── os │ │ │ └── linux │ │ │ │ ├── Kconfig.ap.soc │ │ │ │ ├── Kconfig.mt_wifi │ │ │ │ ├── Kconfig.mt_wifi_3_18 │ │ │ │ ├── Kconfig.mt_wifi_4_4 │ │ │ │ ├── Kconfig.mt_wifi_ap │ │ │ │ ├── Kconfig.mt_wifi_sta │ │ │ │ ├── Kconfig.rlt_wifi │ │ │ │ ├── Kconfig.rlt_wifi_ap │ │ │ │ ├── Kconfig.rlt_wifi_sta │ │ │ │ ├── Kconfig.sta.soc │ │ │ │ ├── Kconfig.wifi │ │ │ │ ├── Makefile-3.10.14.mt_wifi_ap │ │ │ │ ├── Makefile.4 │ │ │ │ ├── Makefile.4.netif │ │ │ │ ├── Makefile.4.util │ │ │ │ ├── Makefile.6 │ │ │ │ ├── Makefile.6.netif │ │ │ │ ├── Makefile.6.util │ │ │ │ ├── Makefile.ap.soc │ │ │ │ ├── Makefile.ap.usb │ │ │ │ ├── Makefile.clean │ │ │ │ ├── Makefile.libautoprovision.6 │ │ │ │ ├── Makefile.mt_wifi_ap │ │ │ │ ├── Makefile.mt_wifi_sta │ │ │ │ ├── Makefile.rlt_wifi_ap │ │ │ │ ├── Makefile.rlt_wifi_ap.7637e │ │ │ │ ├── Makefile.rlt_wifi_sta │ │ │ │ ├── Makefile.sta.soc │ │ │ │ ├── android_priv_cmd.c │ │ │ │ ├── ap_ioctl.c │ │ │ │ ├── bb_soc.c │ │ │ │ ├── br_ftph.c │ │ │ │ ├── cfg80211 │ │ │ │ ├── cfg80211.c │ │ │ │ ├── cfg80211_ap.c │ │ │ │ ├── cfg80211_apcli.c │ │ │ │ ├── cfg80211_inf.c │ │ │ │ ├── cfg80211_p2p.c │ │ │ │ ├── cfg80211_rx.c │ │ │ │ ├── cfg80211_scan.c │ │ │ │ ├── cfg80211_tdls.c │ │ │ │ ├── cfg80211_tx.c │ │ │ │ ├── cfg80211_util.c │ │ │ │ └── cfg80211drv.c │ │ │ │ ├── config.mk │ │ │ │ ├── config.mk.cfg80211 │ │ │ │ ├── diag.c │ │ │ │ ├── inf_ppa.c │ │ │ │ ├── mt_fwdump.c │ │ │ │ ├── multi_main_dev.c │ │ │ │ ├── pci_main_dev.c │ │ │ │ ├── rbus_main_dev.c │ │ │ │ ├── rbus_prop_dev.c │ │ │ │ ├── rt_linux.c │ │ │ │ ├── rt_linux_symb.c │ │ │ │ ├── rt_main_dev.c │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ ├── rt_proc.c │ │ │ │ ├── rt_profile.c │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ ├── rt_symb.c │ │ │ │ ├── rt_txrx_hook.c │ │ │ │ ├── rt_udma.c │ │ │ │ ├── tm.c │ │ │ │ ├── trace.c │ │ │ │ ├── unload │ │ │ │ ├── vr_bdlt.c │ │ │ │ ├── vr_ikans.c │ │ │ │ └── wbsys_main_dev.c │ │ ├── phy │ │ │ ├── mt_phy.c │ │ │ ├── mt_rf.c │ │ │ ├── phy.c │ │ │ ├── rf.c │ │ │ └── rlm_cal_cache.c │ │ ├── protocol │ │ │ ├── protection.c │ │ │ └── tmr.c │ │ ├── rate_ctrl │ │ │ ├── ra_cfg.c │ │ │ ├── ra_ctrl_mt.c │ │ │ ├── ra_ctrl_mt_drv.c │ │ │ └── ra_wrapper_embedded.c │ │ ├── txbf │ │ │ ├── cmm_txbf_cal_mt.c │ │ │ ├── cmm_txbf_mt.c │ │ │ └── txbf_wrapper_embedded.c │ │ └── txpwr │ │ │ ├── Makefile │ │ │ ├── dat2h.c │ │ │ ├── single_sku.c │ │ │ └── sku_tables │ │ │ ├── 7615_SingleSKU_1.dat │ │ │ ├── 7615_SingleSKU_BF_1.dat │ │ │ ├── 7615_SingleSKU_BF_default.dat │ │ │ └── 7615_SingleSKU_default.dat │ │ ├── mt_wifi_ap │ │ ├── Kconfig │ │ └── Makefile │ │ ├── mt_wifi_sta │ │ ├── Kconfig │ │ └── Makefile │ │ └── wlan_cfg │ │ └── mt7622 │ │ ├── RT2860.dat │ │ ├── Readme.txt │ │ ├── iNic_ap.dat │ │ ├── l1profile.dat │ │ └── mt7615_3.dat └── mt_wifi │ ├── Makefile │ ├── config.in │ └── files │ ├── 7603_7612-l1profile.dat │ ├── 7603_7615-l1profile.dat │ ├── 7615.l1profile.dat │ ├── 7615d.l1profile.dat │ ├── 7915d.l1profile.dat │ ├── 91_load_wifi.sh │ ├── SingleSKU.dat │ ├── SingleSKU_BF.dat │ ├── firmware.sh │ ├── mt7603.dat │ ├── mt7612.dat │ ├── mt7615.1.2G.dat │ ├── mt7615.1.5G.dat │ ├── mt7615.2G.dat │ ├── mt7615.5G.dat │ ├── mt7615.dat │ ├── mt7615.lua │ ├── mt7615e-sku-bf.dat │ ├── mt7615e-sku.dat │ ├── mt7615e.eeprom.bin │ ├── mt7622.1.dat │ ├── mt7915.1.2G.dat │ ├── mt7915.1.5G.dat │ └── wifi_services.lua ├── mt7601u-ap ├── Makefile └── patches │ └── 010-fix-control-reaches-end-of-non-void.patch ├── mtk-eip93 ├── Makefile ├── patches │ └── 0001-Fix-compilation-issues.patch └── src │ ├── Makefile │ ├── eip93-cipher.c │ ├── eip93-cipher.h │ ├── eip93-common.h │ ├── eip93-core.c │ ├── eip93-core.h │ ├── eip93-prng.c │ ├── eip93-prng.h │ ├── eip93-regs.h │ ├── eip93-ring.c │ └── eip93-ring.h ├── mtk_apcli ├── Makefile └── src │ ├── Makefile │ ├── main.c │ ├── mtk.h │ └── wext.h ├── mwan3 ├── Makefile └── files │ ├── etc │ ├── config │ │ └── mwan3 │ ├── hotplug.d │ │ └── iface │ │ │ ├── 15-mwan3 │ │ │ ├── 16-mwan3 │ │ │ └── 16-mwan3-user │ ├── init.d │ │ └── mwan3 │ ├── mwan3.user │ └── uci-defaults │ │ └── mwan3-migrate-flush_conntrack │ ├── lib │ └── mwan3 │ │ ├── common.sh │ │ └── mwan3.sh │ └── usr │ ├── libexec │ └── rpcd │ │ └── mwan3 │ └── sbin │ ├── mwan3 │ ├── mwan3rtmon │ └── mwan3track ├── mwol ├── Makefile └── files │ ├── mwol.config │ ├── mwol.init │ ├── mwol_config_json │ └── ssl │ ├── ca.crt │ ├── client.crt │ └── client.key ├── my-autocore ├── Makefile └── files │ ├── common │ ├── 29_eth.js │ └── ethinfo │ └── x86 │ ├── autocore │ ├── cpuinfo │ └── nvme_status.htm ├── my-default-settings ├── Makefile ├── files │ ├── base_config.conf │ ├── shutdown │ ├── sysinfo.sh │ └── uci.defaults └── po │ └── zh_Hans │ └── default.po ├── n2n_v2 ├── Makefile └── files │ ├── n2n_v2.config │ └── n2n_v2.init ├── naiveproxy ├── Makefile └── src │ └── init_env.sh ├── natflow ├── Makefile └── files │ ├── 20-natflow-zone.hotplug │ ├── natflow-boot.init │ ├── natflow-user.init │ ├── natflow-user.sh │ ├── natflow-zone.init │ └── natflow.config ├── netkeeper-interception ├── Makefile ├── files │ ├── etc │ │ ├── config │ │ │ └── netkeeper-interception │ │ └── netkeeper-interception │ │ │ └── pppoe-server-options │ ├── netkeeper-interception.init │ └── ppp_defs.h └── src │ ├── Makefile │ ├── netkeeper-interception-c.c │ └── netkeeper-interception-s.c ├── netkeeper ├── Makefile ├── files │ ├── netkeeper.sh │ └── ppp_defs.h └── src │ ├── DaoNet │ └── DaoNet │ │ ├── Makefile │ │ ├── frame.c │ │ ├── frame.h │ │ ├── main.c │ │ ├── netkeeper.c │ │ ├── netkeeper.h │ │ ├── netutils.c │ │ └── netutils.h │ ├── Makefile │ ├── hainan_sxplugin.c │ ├── md5.h │ ├── sxplugin.c │ └── sxplugin4.c ├── nft-qos ├── Makefile └── files │ ├── lib │ ├── core.sh │ ├── dynamic.sh │ ├── mac.sh │ ├── monitor.sh │ ├── priority.sh │ └── static.sh │ ├── nft-qos-dynamic.hotplug │ ├── nft-qos-monitor.hotplug │ ├── nft-qos.config │ └── nft-qos.init ├── ngrokc └── Makefile ├── njitclient └── Makefile ├── nps ├── Makefile └── patches │ └── 100-remove-useless-sdk-in-npc.patch ├── ntfs3-mount ├── Makefile └── files │ └── mount.ntfs3 ├── ntfs3 └── Makefile ├── oaf ├── Makefile └── src │ ├── Makefile │ ├── af_client.c │ ├── af_client.h │ ├── af_client_fs.c │ ├── af_client_fs.h │ ├── af_log.c │ ├── af_log.h │ ├── af_utils.c │ ├── af_utils.h │ ├── app_filter.c │ ├── app_filter.h │ ├── app_filter_config.c │ ├── cJSON.c │ ├── cJSON.h │ └── regexp.c ├── open-app-filter ├── Makefile ├── files │ ├── app_class.txt │ ├── app_class_en.txt │ ├── appfilter.config │ ├── appfilter.init │ ├── appfilter.lua │ ├── appfilter.sh │ ├── feature.cfg │ ├── feature_en.cfg │ ├── gen_class.sh │ └── oaf_rule └── src │ ├── Makefile │ ├── appfilter_config.c │ ├── appfilter_config.h │ ├── appfilter_netlink.c │ ├── appfilter_netlink.h │ ├── appfilter_ubus.c │ ├── appfilter_ubus.h │ ├── appfilter_user.c │ ├── appfilter_user.h │ └── main.c ├── openvpn-easy-rsa-whisky ├── Makefile ├── files │ └── vars └── patches │ ├── 100-fix_EASYRSA_REQ_CN.patch │ └── 101-static_EASYRSA.patch ├── openvpn ├── Config-mbedtls.in ├── Config-openssl.in ├── Config-wolfssl.in ├── Makefile ├── files │ ├── etc │ │ ├── hotplug.d │ │ │ └── openvpn │ │ │ │ └── 01-user │ │ └── openvpn.user │ ├── lib │ │ └── functions │ │ │ └── openvpn.sh │ ├── openvpn.config │ ├── openvpn.init │ ├── openvpn.options │ ├── openvpn.upgrade │ └── usr │ │ └── libexec │ │ └── openvpn-hotplug ├── patches │ ├── 001-reproducible-remove_DATE.patch │ ├── 002-add-wolfssl-support.patch │ ├── 100-mbedtls-disable-runtime-version-check.patch │ ├── 210-build_always_use_internal_lz4.patch │ └── 220-disable_des.patch └── test.sh ├── openwrt-fullconenat ├── Makefile └── files │ └── Makefile ├── oscam ├── Config.in ├── Makefile └── files │ ├── oscam-watchdog.sh │ ├── oscam.conf │ ├── oscam.dvbapi │ ├── oscam.init │ ├── oscam.server │ └── oscam.user ├── pdnsd-alt ├── Makefile ├── files │ └── pdnsd.init └── patches │ └── 10-filter-aaaa.patch ├── polarssl ├── Makefile └── patches │ ├── 100-disable_sslv3.patch │ └── 200-reduce_config.patch ├── ps3netsrv ├── Makefile ├── files │ ├── ps3netsrv.config │ └── ps3netsrv.init └── patches │ ├── 001-include.common.h.patch │ ├── 002-include.compat.h.patch │ └── 003-makefile.patch ├── qBittorrent-Enhanced-Edition └── Makefile ├── qBittorrent-static └── Makefile ├── qBittorrent ├── Makefile └── files │ └── ipfilter.dat ├── qtbase ├── Makefile └── patches │ └── 010-gcc11.patch ├── qttools └── Makefile ├── quickjspp ├── Makefile └── patches │ ├── 100-gcc-10.patch │ └── 200-libdir.patch ├── r8125 ├── Makefile └── src │ ├── Makefile │ ├── Makefile_linux24x │ ├── r8125.h │ ├── r8125_dash.h │ ├── r8125_firmware.c │ ├── r8125_firmware.h │ ├── r8125_n.c │ ├── r8125_ptp.c │ ├── r8125_ptp.h │ ├── r8125_realwow.h │ ├── r8125_rss.c │ ├── r8125_rss.h │ ├── rtl_eeprom.c │ ├── rtl_eeprom.h │ ├── rtltool.c │ └── rtltool.h ├── r8152 ├── Makefile └── patches │ ├── 010-compat-skb_mark_not_on_list-was-backported-since-ker.patch │ └── 100-add-LED-configuration-from-OF.patch ├── r8168 ├── Makefile └── patches │ └── 001-r8168-add-LED-configuration-from-OF.patch ├── rapidjson └── Makefile ├── rblibtorrent └── Makefile ├── redsocks2 └── Makefile ├── rtl8188eu ├── Makefile └── patches │ ├── 001-use-kernel-byteorder.patch │ ├── 010-disable-default-build-x86.patch │ ├── 020-remove-repeat-flies.patch │ └── 030-wireless-5.8.patch ├── rtl8192eu ├── Makefile └── patches │ ├── 001-use-kernel-byteorder.patch │ ├── 010-disable-default-build-x86.patch │ ├── 020-remove-repeat-flies.patch │ └── 030-wireless-5.8.patch ├── rtl8812au-ac ├── Makefile └── patches │ ├── 001-use-kernel-byteorder.patch │ ├── 010-disable-default-build-x86.patch │ ├── 020-change-value-of-vht-enable-and-usb-mode.patch │ ├── 030-add-missing-code-for-concurrent-mode.patch │ └── 040-wireless-5.8.patch ├── rtl8821cu ├── Makefile └── patches │ ├── 001-use-kernel-byteorder.patch │ ├── 010-remove-extra-cflags.patch │ ├── 020-remove-repeat-flies.patch │ ├── 030-change-value-of-vht-enable.patch │ └── 040-wireless-5.8.patch ├── rtl88x2bu ├── Makefile └── patches │ ├── 001-use-kernel-byteorder.patch │ ├── 010-remove-repeat-flies.patch │ └── 020-wireless-5.8.patch ├── scutclient └── Makefile ├── shadowsocks-rust └── Makefile ├── shadowsocksr-libev ├── Makefile ├── patches │ ├── 0001-Add-ss-server-and-ss-check.patch │ ├── 0002-Revert-verify_simple-and-auth_simple.patch │ ├── 0003-Refine-Usage.patch │ ├── 100-fix-gcc-10.patch │ ├── 101-Fix-Werror-sizeof-pointer-memaccess.patch │ ├── 102-Read-listening-mode-from-config.patch │ └── 999-tcp-tproxy.patch └── src │ └── server │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── acl.c │ ├── acl.h │ ├── auth.c │ ├── auth.h │ ├── base64.c │ ├── base64.h │ ├── cache.c │ ├── cache.h │ ├── check.c │ ├── common.h │ ├── crc32.c │ ├── encrypt.c │ ├── encrypt.h │ ├── http.c │ ├── http.h │ ├── http_simple.c │ ├── http_simple.h │ ├── jconf.c │ ├── jconf.h │ ├── json.c │ ├── json.h │ ├── list.c │ ├── list.h │ ├── netutils.c │ ├── netutils.h │ ├── obfs.c │ ├── obfs.h │ ├── obfsutil.c │ ├── protocol.h │ ├── resolv.c │ ├── resolv.h │ ├── rule.c │ ├── rule.h │ ├── server.c │ ├── server.h │ ├── tls.c │ ├── tls.h │ ├── tls1.2_ticket.c │ ├── tls1.2_ticket.h │ ├── udprelay.c │ ├── udprelay.h │ ├── uthash.h │ ├── utils.c │ ├── utils.h │ ├── verify.c │ └── verify.h ├── shellsync ├── Makefile └── src │ └── shellsync.c ├── shortcut-fe ├── fast-classifier │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── fast-classifier.c │ │ ├── fast-classifier.h │ │ ├── nl_classifier_test.c │ │ └── userspace_example.c ├── shortcut-fe │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── shortcut-fe │ │ └── usr │ │ │ └── bin │ │ │ └── sfe_dump │ └── src │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── sfe.h │ │ ├── sfe_backport.h │ │ ├── sfe_cm.c │ │ ├── sfe_cm.h │ │ ├── sfe_ipv4.c │ │ └── sfe_ipv6.c └── simulated-driver │ ├── Makefile │ └── patches │ └── 200-nss-qdisc-support.patch ├── simple-obfs └── Makefile ├── smartdns ├── Makefile └── conf │ ├── custom.conf │ └── smartdns.conf ├── sms-tool ├── Makefile └── patches │ └── 0001-Update-sms_main.c.patch ├── srelay ├── Makefile ├── files │ ├── srelay.conf │ └── srelay.init └── patches │ └── 001-compile.patch ├── ssocks ├── Makefile └── patches │ ├── 001-fix.patch │ └── 002-gcc10.patch ├── sub-web ├── Makefile └── patches │ ├── 010-dist-support-run-in-curdir.patch │ └── 020-views-add-examples-from-ACL4SSR-and-Subconverter.patch ├── subconverter ├── Makefile ├── files │ └── subconverter.init └── patches │ └── 100-stdcxxfs.patch ├── sysuh3c ├── Makefile └── files │ ├── sysuh3c.config │ ├── sysuh3c.defaults │ └── sysuh3c.init ├── tcping └── Makefile ├── tcpping └── Makefile ├── toml11 └── Makefile ├── trojan-go └── Makefile ├── trojan-plus └── Makefile ├── trojan ├── Makefile └── patches │ └── 001-force-openssl-version.patch ├── uugamebooster ├── Makefile ├── files │ ├── uugamebooster.config │ └── uugamebooster.init └── update.sh ├── v2ray-core ├── Makefile └── files │ ├── v2ray.conf │ └── v2ray.init ├── v2ray-plugin └── Makefile ├── verysync └── Makefile ├── vlmcsd ├── Makefile └── files │ ├── vlmcsd.ini │ └── vlmcsd.init ├── vsftpd-alt ├── Makefile ├── files │ ├── vsftpd-uci.init │ ├── vsftpd.conf │ ├── vsftpd.init │ ├── vsftpd.uci │ ├── vsftpd_prepare │ └── vsftpd_wrapper └── patches │ ├── 001-destdir.patch │ ├── 002-find_libs.patch │ ├── 003-chroot.patch │ ├── 004-disable-capabilities.patch │ ├── 005-disable-pam.patch │ ├── 006-musl-compatibility.patch │ ├── 007-CVE-2015-1419.patch │ ├── 010-openssl-deprecated.patch │ ├── 100-add-uci-auth-support.patch │ ├── 101-enable-chroot-on-writable-dir.patch │ └── 102-keep-local-user-rights.patch ├── wol ├── Makefile └── patches │ └── 001-fix-build-on-x86.patch ├── wrtbwmon ├── Makefile └── net │ ├── etc │ ├── config │ │ └── wrtbwmon │ ├── hotplug.d │ │ └── iface │ │ │ └── 99-wrtbwmon │ └── init.d │ │ └── wrtbwmon │ └── usr │ ├── sbin │ ├── readDB.awk │ └── wrtbwmon │ └── share │ └── wrtbwmon │ ├── usage.htm1 │ └── usage.htm2 ├── wxbase ├── Makefile └── patches │ ├── fix-install-pointer.patch │ └── wxGTK-2.8.12-abicheck.patch ├── xray-core ├── Makefile ├── files │ ├── config.json.example │ ├── vpoint_socks_vmess.json │ ├── vpoint_vmess_freedom.json │ ├── xray.conf │ └── xray.init └── test.sh └── xray-plugin └── Makefile /.github/workflows/upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/.github/workflows/upstream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/LICENSE -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/Makefile -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/README.md -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/Makefile -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/dlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/dlfunc.c -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/dlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/dlfunc.h -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/md5.c -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/md5.h -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/myfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/myfunc.c -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/myfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/myfunc.h -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/myini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/myini.c -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/myini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/myini.h -------------------------------------------------------------------------------- /MentoHUST-OpenWrt-ipk/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/MentoHUST-OpenWrt-ipk/src/types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/README.md -------------------------------------------------------------------------------- /UnblockNeteaseMusic-Go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/UnblockNeteaseMusic-Go/Makefile -------------------------------------------------------------------------------- /UnblockNeteaseMusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/UnblockNeteaseMusic/Makefile -------------------------------------------------------------------------------- /adbyby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/Makefile -------------------------------------------------------------------------------- /adbyby/files/adbyby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/adbyby.sh -------------------------------------------------------------------------------- /adbyby/files/adhook.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/adhook.ini -------------------------------------------------------------------------------- /adbyby/files/amd64/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/amd64/adbyby -------------------------------------------------------------------------------- /adbyby/files/arm/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/arm/adbyby -------------------------------------------------------------------------------- /adbyby/files/armv7/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/armv7/adbyby -------------------------------------------------------------------------------- /adbyby/files/data/lazy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/data/lazy.bin -------------------------------------------------------------------------------- /adbyby/files/data/lazy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/data/lazy.txt -------------------------------------------------------------------------------- /adbyby/files/data/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/data/rules.txt -------------------------------------------------------------------------------- /adbyby/files/data/user.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adbyby/files/data/video.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/data/video.txt -------------------------------------------------------------------------------- /adbyby/files/doc/hidecss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/doc/hidecss.js -------------------------------------------------------------------------------- /adbyby/files/mips/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/mips/adbyby -------------------------------------------------------------------------------- /adbyby/files/mipsle/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/mipsle/adbyby -------------------------------------------------------------------------------- /adbyby/files/update.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/update.info -------------------------------------------------------------------------------- /adbyby/files/user.action: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adbyby/files/x86/adbyby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adbyby/files/x86/adbyby -------------------------------------------------------------------------------- /adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adguardhome/Makefile -------------------------------------------------------------------------------- /adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /amule-dlp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/amule-dlp/Makefile -------------------------------------------------------------------------------- /antileech/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/Makefile -------------------------------------------------------------------------------- /antileech/src/CString_wx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/CString_wx.h -------------------------------------------------------------------------------- /antileech/src/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/Interface.cpp -------------------------------------------------------------------------------- /antileech/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/Makefile.am -------------------------------------------------------------------------------- /antileech/src/antiLeech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/antiLeech.cpp -------------------------------------------------------------------------------- /antileech/src/antiLeech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/antiLeech.h -------------------------------------------------------------------------------- /antileech/src/antiLeech_wx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/antiLeech_wx.cpp -------------------------------------------------------------------------------- /antileech/src/antiLeech_wx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/antiLeech_wx.h -------------------------------------------------------------------------------- /antileech/src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/autogen.sh -------------------------------------------------------------------------------- /antileech/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/configure.ac -------------------------------------------------------------------------------- /antileech/src/sdc2amule.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/antileech/src/sdc2amule.diff -------------------------------------------------------------------------------- /app-store-ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/app-store-ui/Makefile -------------------------------------------------------------------------------- /app-store-ui/src/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/app-store-ui/src/dist/index.html -------------------------------------------------------------------------------- /aria2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/aria2/Config.in -------------------------------------------------------------------------------- /aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/aria2/Makefile -------------------------------------------------------------------------------- /aria2/files/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/aria2/files/aria2.conf -------------------------------------------------------------------------------- /aria2/files/aria2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/aria2/files/aria2.init -------------------------------------------------------------------------------- /automount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/automount/Makefile -------------------------------------------------------------------------------- /automount/files/15-automount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/automount/files/15-automount -------------------------------------------------------------------------------- /automount/files/zzz-move-automount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/automount/files/zzz-move-automount -------------------------------------------------------------------------------- /autoshare-ksmbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/autoshare-ksmbd/Makefile -------------------------------------------------------------------------------- /autoshare-ksmbd/files/20-smb-ksmbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/autoshare-ksmbd/files/20-smb-ksmbd -------------------------------------------------------------------------------- /autoshare-samba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/autoshare-samba/Makefile -------------------------------------------------------------------------------- /autoshare-samba/files/20-smb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/autoshare-samba/files/20-smb -------------------------------------------------------------------------------- /baidupcs-web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/baidupcs-web/Makefile -------------------------------------------------------------------------------- /bpytop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/bpytop/Makefile -------------------------------------------------------------------------------- /brook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/brook/Makefile -------------------------------------------------------------------------------- /cgroupfs-mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cgroupfs-mount/Makefile -------------------------------------------------------------------------------- /cgroupfs-mount/files/cgroupfs-mount.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | 3 | START=01 4 | 5 | boot() { 6 | cgroupfs-mount 7 | } 8 | -------------------------------------------------------------------------------- /chinadns-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/chinadns-ng/Makefile -------------------------------------------------------------------------------- /cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cpulimit/Makefile -------------------------------------------------------------------------------- /cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/Makefile -------------------------------------------------------------------------------- /cups/files/cupsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/files/cupsd.init -------------------------------------------------------------------------------- /cups/files/etc/cups/classes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/files/etc/cups/classes.conf -------------------------------------------------------------------------------- /cups/files/etc/cups/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/files/etc/cups/client.conf -------------------------------------------------------------------------------- /cups/files/etc/cups/cupsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/files/etc/cups/cupsd.conf -------------------------------------------------------------------------------- /cups/files/etc/cups/printers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/cups/files/etc/cups/printers.conf -------------------------------------------------------------------------------- /ddns-scripts-aliyun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddns-scripts-aliyun/Makefile -------------------------------------------------------------------------------- /ddns-scripts-dnspod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddns-scripts-dnspod/Makefile -------------------------------------------------------------------------------- /ddns-scripts-dnspod/README.md: -------------------------------------------------------------------------------- 1 | # ddns-scripts-dnspod 2 | 支持同一域名同时使用A/AAAA记录 3 | -------------------------------------------------------------------------------- /ddns-scripts-dnspod/dnspod.cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddns-scripts-dnspod/dnspod.cn.json -------------------------------------------------------------------------------- /ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddnsto/Makefile -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddnsto/files/ddnsto.config -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddnsto/files/ddnsto.init -------------------------------------------------------------------------------- /ddnsto/files/ddnsto.uci-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ddnsto/files/ddnsto.uci-default -------------------------------------------------------------------------------- /diy/.packages/ddns-scripts-dnspod/README.md: -------------------------------------------------------------------------------- 1 | # ddns-scripts-dnspod 2 | 支持同一域名同时使用A/AAAA记录 3 | -------------------------------------------------------------------------------- /diy/convert_translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/convert_translation.sh -------------------------------------------------------------------------------- /diy/create_acl_for_luci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/create_acl_for_luci.sh -------------------------------------------------------------------------------- /diy/patches/AdGuardHome.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/AdGuardHome.patch -------------------------------------------------------------------------------- /diy/patches/acl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/acl.patch -------------------------------------------------------------------------------- /diy/patches/cgroupfs-mount.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/cgroupfs-mount.patch -------------------------------------------------------------------------------- /diy/patches/ddnsto.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/ddnsto.patch -------------------------------------------------------------------------------- /diy/patches/luci-app-cifs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/luci-app-cifs.patch -------------------------------------------------------------------------------- /diy/patches/miniupnp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/miniupnp.patch -------------------------------------------------------------------------------- /diy/patches/mtwifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/mtwifi.patch -------------------------------------------------------------------------------- /diy/patches/openvpn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/openvpn.patch -------------------------------------------------------------------------------- /diy/patches/qbittorrent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/diy/patches/qbittorrent.patch -------------------------------------------------------------------------------- /dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dns2socks/Makefile -------------------------------------------------------------------------------- /dnsforwarder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dnsforwarder/Makefile -------------------------------------------------------------------------------- /dnsproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dnsproxy/Makefile -------------------------------------------------------------------------------- /dpdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dpdk/Makefile -------------------------------------------------------------------------------- /dsmboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dsmboot/Makefile -------------------------------------------------------------------------------- /dsmboot/files/dsm.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dsmboot/files/dsm.iso -------------------------------------------------------------------------------- /dsmboot/files/dsmboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dsmboot/files/dsmboot -------------------------------------------------------------------------------- /dsmboot/files/menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dsmboot/files/menu.lst -------------------------------------------------------------------------------- /dsmboot/files/pxelinux.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/dsmboot/files/pxelinux.0 -------------------------------------------------------------------------------- /filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/filebrowser/Makefile -------------------------------------------------------------------------------- /filebrowser/files/filebrowser.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/filebrowser/files/filebrowser.init -------------------------------------------------------------------------------- /gmediarender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gmediarender/Makefile -------------------------------------------------------------------------------- /go-aliyundrive-webdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/go-aliyundrive-webdav/Makefile -------------------------------------------------------------------------------- /gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gost/Makefile -------------------------------------------------------------------------------- /gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gost/files/gost.config -------------------------------------------------------------------------------- /gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gost/files/gost.init -------------------------------------------------------------------------------- /gowebdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gowebdav/Makefile -------------------------------------------------------------------------------- /gowebdav/files/gowebdav.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gowebdav/files/gowebdav.config -------------------------------------------------------------------------------- /gowebdav/files/gowebdav.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/gowebdav/files/gowebdav.init -------------------------------------------------------------------------------- /hysteria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/hysteria/Makefile -------------------------------------------------------------------------------- /ikoolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/Makefile -------------------------------------------------------------------------------- /ikoolproxy/files/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/aarch64 -------------------------------------------------------------------------------- /ikoolproxy/files/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/arm -------------------------------------------------------------------------------- /ikoolproxy/files/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/i386 -------------------------------------------------------------------------------- /ikoolproxy/files/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/mips -------------------------------------------------------------------------------- /ikoolproxy/files/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/mipsel -------------------------------------------------------------------------------- /ikoolproxy/files/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ikoolproxy/files/x86_64 -------------------------------------------------------------------------------- /ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ipt2socks/Makefile -------------------------------------------------------------------------------- /iptvhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/iptvhelper/Makefile -------------------------------------------------------------------------------- /jpcre2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/jpcre2/Makefile -------------------------------------------------------------------------------- /kcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/kcptun/Makefile -------------------------------------------------------------------------------- /libcron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/libcron/Makefile -------------------------------------------------------------------------------- /libcryptopp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/libcryptopp/Makefile -------------------------------------------------------------------------------- /linkease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/linkease/Makefile -------------------------------------------------------------------------------- /linkease/files/aria2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/linkease/files/aria2.sh -------------------------------------------------------------------------------- /linkease/files/linkease.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/linkease/files/linkease.config -------------------------------------------------------------------------------- /linkease/files/linkease.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/linkease/files/linkease.init -------------------------------------------------------------------------------- /lua-ipops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/lua-ipops/Makefile -------------------------------------------------------------------------------- /lua-ipops/src/ipops.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/lua-ipops/src/ipops.lua -------------------------------------------------------------------------------- /lua-maxminddb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/lua-maxminddb/Makefile -------------------------------------------------------------------------------- /luci-app-accesscontrol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-accesscontrol/Makefile -------------------------------------------------------------------------------- /luci-app-accesscontrol/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-accesscontrol/root/etc/config/mia: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-accesscontrol/root/etc/mia.include: -------------------------------------------------------------------------------- 1 | /etc/init.d/mia restart -------------------------------------------------------------------------------- /luci-app-adbyby-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-adbyby-plus/Makefile -------------------------------------------------------------------------------- /luci-app-adbyby-plus/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-adbyby-plus/root/usr/share/adbyby/rule-count: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | find $1 -type f -exec cat {} \; | wc -l -------------------------------------------------------------------------------- /luci-app-adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-adguardhome/Makefile -------------------------------------------------------------------------------- /luci-app-adguardhome/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-advanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-advanced/Makefile -------------------------------------------------------------------------------- /luci-app-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-advanced/README.md -------------------------------------------------------------------------------- /luci-app-advanced/root/etc/config/advanced: -------------------------------------------------------------------------------- 1 | config advanced 2 | option enabled '1' 3 | -------------------------------------------------------------------------------- /luci-app-airplay2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-airplay2/Makefile -------------------------------------------------------------------------------- /luci-app-airplay2/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-airwhu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-airwhu/Makefile -------------------------------------------------------------------------------- /luci-app-airwhu/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-aliddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-aliddns/Makefile -------------------------------------------------------------------------------- /luci-app-aliddns/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-aliyundrive-webdav/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-amule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-amule/Makefile -------------------------------------------------------------------------------- /luci-app-amule/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-amule/po/zh_Hans/amule.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-amule/po/zh_Hans/amule.po -------------------------------------------------------------------------------- /luci-app-appfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-appfilter/Makefile -------------------------------------------------------------------------------- /luci-app-appfilter/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-argon-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-argon-config/Makefile -------------------------------------------------------------------------------- /luci-app-argon-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-argon-config/README.md -------------------------------------------------------------------------------- /luci-app-argon-config/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-arpbind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-arpbind/Makefile -------------------------------------------------------------------------------- /luci-app-arpbind/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-arpbind/root/etc/hotplug.d/iface/50-arpbind: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$ACTION" = "ifup" ] && /etc/init.d/arpbind start 3 | -------------------------------------------------------------------------------- /luci-app-autoipsetadder/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak 3 | -------------------------------------------------------------------------------- /luci-app-autoipsetadder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autoipsetadder/Makefile -------------------------------------------------------------------------------- /luci-app-autoipsetadder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autoipsetadder/README.md -------------------------------------------------------------------------------- /luci-app-autoreboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autoreboot/Makefile -------------------------------------------------------------------------------- /luci-app-autoreboot/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-autorepeater/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autorepeater/.directory -------------------------------------------------------------------------------- /luci-app-autorepeater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autorepeater/.gitignore -------------------------------------------------------------------------------- /luci-app-autorepeater/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autorepeater/LICENSE -------------------------------------------------------------------------------- /luci-app-autorepeater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autorepeater/Makefile -------------------------------------------------------------------------------- /luci-app-autorepeater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autorepeater/README.md -------------------------------------------------------------------------------- /luci-app-autotimeset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autotimeset/LICENSE -------------------------------------------------------------------------------- /luci-app-autotimeset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autotimeset/Makefile -------------------------------------------------------------------------------- /luci-app-autotimeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-autotimeset/README.md -------------------------------------------------------------------------------- /luci-app-autotimeset/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-babeld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-babeld/Makefile -------------------------------------------------------------------------------- /luci-app-baidupcs-web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-baidupcs-web/Makefile -------------------------------------------------------------------------------- /luci-app-baidupcs-web/README.md: -------------------------------------------------------------------------------- 1 | "# luci-app-baidupcs-web" 2 | -------------------------------------------------------------------------------- /luci-app-beardropper/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /luci-app-beardropper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-beardropper/LICENSE -------------------------------------------------------------------------------- /luci-app-beardropper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-beardropper/Makefile -------------------------------------------------------------------------------- /luci-app-beardropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-beardropper/README.md -------------------------------------------------------------------------------- /luci-app-beardropper/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-brook-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-brook-server/Makefile -------------------------------------------------------------------------------- /luci-app-brook-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-bypass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-bypass/Makefile -------------------------------------------------------------------------------- /luci-app-bypass/po/zh-cn/bypass.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-bypass/po/zh-cn/bypass.po -------------------------------------------------------------------------------- /luci-app-bypass/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-bypass/root/etc/bypass/white.list: -------------------------------------------------------------------------------- 1 | apple.com 2 | -------------------------------------------------------------------------------- /luci-app-cd8021x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cd8021x/Makefile -------------------------------------------------------------------------------- /luci-app-cd8021x/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-cifs-mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cifs-mount/Makefile -------------------------------------------------------------------------------- /luci-app-cifs-mount/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-control-timewol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-control-timewol/Makefile -------------------------------------------------------------------------------- /luci-app-control-timewol/po/zh-cn/timewol.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-control-timewol/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-control-timewol/root/etc/config/timewol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-control-webrestriction/po/zh-cn/webrestriction.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-control-webrestriction/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-control-weburl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-control-weburl/Makefile -------------------------------------------------------------------------------- /luci-app-control-weburl/po/zh-cn/weburl.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-control-weburl/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-cpufreq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cpufreq/Makefile -------------------------------------------------------------------------------- /luci-app-cpufreq/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-cpufreq/root/etc/config/cpufreq: -------------------------------------------------------------------------------- 1 | 2 | config settings 'cpufreq' 3 | 4 | -------------------------------------------------------------------------------- /luci-app-cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cpulimit/Makefile -------------------------------------------------------------------------------- /luci-app-cpulimit/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-cupsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cupsd/Makefile -------------------------------------------------------------------------------- /luci-app-cupsd/root/www/cups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-cupsd/root/www/cups.pdf -------------------------------------------------------------------------------- /luci-app-dawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dawn/Makefile -------------------------------------------------------------------------------- /luci-app-dawn/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-dawn/po/zh_Hans/dawn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dawn/po/zh_Hans/dawn.po -------------------------------------------------------------------------------- /luci-app-ddnsto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ddnsto/Makefile -------------------------------------------------------------------------------- /luci-app-ddnsto/luasrc/view/admin_status/index/ddnsto.htm: -------------------------------------------------------------------------------- 1 | <%+ddnsto_status%> 2 | -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh-cn/ddnsto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ddnsto/po/zh-cn/ddnsto.po -------------------------------------------------------------------------------- /luci-app-ddnsto/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-diskman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-diskman/Makefile -------------------------------------------------------------------------------- /luci-app-diskman/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-dnscrypt-proxy2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnscrypt-proxy2/LICENSE -------------------------------------------------------------------------------- /luci-app-dnscrypt-proxy2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnscrypt-proxy2/Makefile -------------------------------------------------------------------------------- /luci-app-dnscrypt-proxy2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnscrypt-proxy2/README.md -------------------------------------------------------------------------------- /luci-app-dnsfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsfilter/Makefile -------------------------------------------------------------------------------- /luci-app-dnsfilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsfilter/README.md -------------------------------------------------------------------------------- /luci-app-dnsfilter/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/black.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-dnsfilter/root/etc/dnsfilter/white.list: -------------------------------------------------------------------------------- 1 | boxer.baidu.com 2 | -------------------------------------------------------------------------------- /luci-app-dnsforwarder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsforwarder/Makefile -------------------------------------------------------------------------------- /luci-app-dnsforwarder/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsmasq-ipset/.gitignore -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsmasq-ipset/LICENSE -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsmasq-ipset/Makefile -------------------------------------------------------------------------------- /luci-app-dnsmasq-ipset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dnsmasq-ipset/README.md -------------------------------------------------------------------------------- /luci-app-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-docker/Makefile -------------------------------------------------------------------------------- /luci-app-docker/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-docker/root/etc/config/docker: -------------------------------------------------------------------------------- 1 | 2 | config docker 3 | option wan_mode '0' 4 | 5 | -------------------------------------------------------------------------------- /luci-app-docker/root/etc/docker/daemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "data-root": "/opt/", 3 | "log-level": "warn" 4 | } 5 | -------------------------------------------------------------------------------- /luci-app-dockerman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dockerman/Makefile -------------------------------------------------------------------------------- /luci-app-dockerman/depends.lst: -------------------------------------------------------------------------------- 1 | ttyd docker-cli -------------------------------------------------------------------------------- /luci-app-dockerman/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-dockerman/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-dockerman/postinst -------------------------------------------------------------------------------- /luci-app-easymesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-easymesh/Makefile -------------------------------------------------------------------------------- /luci-app-easymesh/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-easyupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-easyupdate/Makefile -------------------------------------------------------------------------------- /luci-app-easyupdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-easyupdate/README.md -------------------------------------------------------------------------------- /luci-app-easyupdate/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-easyupdate/root/etc/config/easyupdate: -------------------------------------------------------------------------------- 1 | config easyupdate 'main' 2 | option enable '0' -------------------------------------------------------------------------------- /luci-app-eqos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-eqos/Makefile -------------------------------------------------------------------------------- /luci-app-eqos/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-eqos/po/zh_Hans/eqos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-eqos/po/zh_Hans/eqos.po -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/config/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-eqos/root/etc/config/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/etc/init.d/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-eqos/root/etc/init.d/eqos -------------------------------------------------------------------------------- /luci-app-eqos/root/usr/sbin/eqos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-eqos/root/usr/sbin/eqos -------------------------------------------------------------------------------- /luci-app-familycloud/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-familycloud/Makefile -------------------------------------------------------------------------------- /luci-app-familycloud/root/etc/ppp/ip-up.d/familycloud.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sleep 60 && /etc/init.d/familycloud restart 4 | -------------------------------------------------------------------------------- /luci-app-familycloud/root/usr/share/familycloud/FamilyCloud/config.json: -------------------------------------------------------------------------------- 1 | /tmp/config.json -------------------------------------------------------------------------------- /luci-app-fileassistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-fileassistant/Makefile -------------------------------------------------------------------------------- /luci-app-filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-filebrowser/Makefile -------------------------------------------------------------------------------- /luci-app-filetransfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-filetransfer/Makefile -------------------------------------------------------------------------------- /luci-app-filetransfer/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-frpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frpc/Makefile -------------------------------------------------------------------------------- /luci-app-frpc/po/zh-cn/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frpc/po/zh-cn/frp.po -------------------------------------------------------------------------------- /luci-app-frpc/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-frpc/root/etc/config/frp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frpc/root/etc/config/frp -------------------------------------------------------------------------------- /luci-app-frpc/root/etc/init.d/frp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frpc/root/etc/init.d/frp -------------------------------------------------------------------------------- /luci-app-frps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frps/Makefile -------------------------------------------------------------------------------- /luci-app-frps/po/zh-cn/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frps/po/zh-cn/frps.po -------------------------------------------------------------------------------- /luci-app-frps/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-frps/root/etc/config/frps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frps/root/etc/config/frps -------------------------------------------------------------------------------- /luci-app-frps/root/etc/init.d/frps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-frps/root/etc/init.d/frps -------------------------------------------------------------------------------- /luci-app-go-aliyundrive-webdav/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-gost/Makefile -------------------------------------------------------------------------------- /luci-app-gost/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-gost/po/zh_Hans/gost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-gost/po/zh_Hans/gost.po -------------------------------------------------------------------------------- /luci-app-gowebdav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-gowebdav/Makefile -------------------------------------------------------------------------------- /luci-app-gowebdav/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-gpsysupgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-gpsysupgrade/Makefile -------------------------------------------------------------------------------- /luci-app-gpsysupgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-gpsysupgrade/README.md -------------------------------------------------------------------------------- /luci-app-gpsysupgrade/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-guest-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-guest-wifi/Makefile -------------------------------------------------------------------------------- /luci-app-guest-wifi/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-haproxy-tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-haproxy-tcp/Makefile -------------------------------------------------------------------------------- /luci-app-haproxy-tcp/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-homebridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-homebridge/Makefile -------------------------------------------------------------------------------- /luci-app-homebridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-homebridge/README.md -------------------------------------------------------------------------------- /luci-app-ikoolproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ikoolproxy/Makefile -------------------------------------------------------------------------------- /luci-app-ikoolproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ikoolproxy/README.md -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adblockip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adbypass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/etc/adblocklist/adbypassip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/adblock.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/dnsmasq.adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/root/usr/share/koolproxy/koolproxy_ipset.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ikoolproxy/update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ikoolproxy/update.log -------------------------------------------------------------------------------- /luci-app-iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/Makefile -------------------------------------------------------------------------------- /luci-app-iperf/po/de/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/de/iperf.po -------------------------------------------------------------------------------- /luci-app-iperf/po/de/iperf.po~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/de/iperf.po~ -------------------------------------------------------------------------------- /luci-app-iperf/po/fr/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/fr/iperf.po -------------------------------------------------------------------------------- /luci-app-iperf/po/fr/iperf.po~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/fr/iperf.po~ -------------------------------------------------------------------------------- /luci-app-iperf/po/it/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/it/iperf.po -------------------------------------------------------------------------------- /luci-app-iperf/po/it/iperf.po~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/it/iperf.po~ -------------------------------------------------------------------------------- /luci-app-iperf/po/oc/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/oc/iperf.po -------------------------------------------------------------------------------- /luci-app-iperf/po/oc/iperf.po~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/oc/iperf.po~ -------------------------------------------------------------------------------- /luci-app-iperf/po/ru/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/ru/iperf.po -------------------------------------------------------------------------------- /luci-app-iperf/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-iperf/po/zh_Hans/iperf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iperf/po/zh_Hans/iperf.po -------------------------------------------------------------------------------- /luci-app-ipsec-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ipsec-server/Makefile -------------------------------------------------------------------------------- /luci-app-ipsec-server/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-ipsec-vpnd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ipsec-vpnd/Makefile -------------------------------------------------------------------------------- /luci-app-ipsec-vpnd/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ipsec-vpnserver-manyusers/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-iptvhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-iptvhelper/Makefile -------------------------------------------------------------------------------- /luci-app-iptvhelper/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/.gitignore: -------------------------------------------------------------------------------- 1 | relnotes.txt -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-jd-dailybonus/LICENSE -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-jd-dailybonus/Makefile -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-jd-dailybonus/README.md -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/extsprintf/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/extsprintf/.npmignore: -------------------------------------------------------------------------------- 1 | /deps 2 | /examples 3 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/uri-js/dist/esnext/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./uri"; 2 | -------------------------------------------------------------------------------- /luci-app-kcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-kcptun/Makefile -------------------------------------------------------------------------------- /luci-app-kcptun/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-kodexplorer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-kodexplorer/Makefile -------------------------------------------------------------------------------- /luci-app-kodexplorer/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ledtrig-rssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ledtrig-rssi/Makefile -------------------------------------------------------------------------------- /luci-app-ledtrig-switch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ledtrig-switch/Makefile -------------------------------------------------------------------------------- /luci-app-ledtrig-usbport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ledtrig-usbport/Makefile -------------------------------------------------------------------------------- /luci-app-linkease/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-linkease/Makefile -------------------------------------------------------------------------------- /luci-app-linkease/luasrc/view/admin_status/index/linkease.htm: -------------------------------------------------------------------------------- 1 | <%+linkease_status%> 2 | -------------------------------------------------------------------------------- /luci-app-linkease/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-linkease/root/etc/uci-defaults/50_luci-linkease: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /luci-app-macvlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-macvlan/Makefile -------------------------------------------------------------------------------- /luci-app-macvlan/files/root/etc/config/macvlan: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-mentohust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mentohust/.gitignore -------------------------------------------------------------------------------- /luci-app-mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mentohust/Makefile -------------------------------------------------------------------------------- /luci-app-mentohust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mentohust/README.md -------------------------------------------------------------------------------- /luci-app-mentohust/files/root/etc/config/mentohust: -------------------------------------------------------------------------------- 1 | config mentohust 2 | -------------------------------------------------------------------------------- /luci-app-minieap/.gitignore: -------------------------------------------------------------------------------- 1 | po2lmo/ -------------------------------------------------------------------------------- /luci-app-minieap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-minieap/Makefile -------------------------------------------------------------------------------- /luci-app-minieap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-minieap/README.md -------------------------------------------------------------------------------- /luci-app-mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mosdns/Makefile -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh-cn/mosdns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mosdns/po/zh-cn/mosdns.po -------------------------------------------------------------------------------- /luci-app-mosdns/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-mosdns/root/etc/hotplug.d/iface/99-mosdns: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$ACTION" = ifup ] && /etc/init.d/mosdns restart -------------------------------------------------------------------------------- /luci-app-mtwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mtwifi/Makefile -------------------------------------------------------------------------------- /luci-app-mtwifi/root/lib/upgrade/keep.d/mtwifi: -------------------------------------------------------------------------------- 1 | /etc/wireless/mt7615/ 2 | 3 | -------------------------------------------------------------------------------- /luci-app-mtwifi/root/sbin/mtkwifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mtwifi/root/sbin/mtkwifi -------------------------------------------------------------------------------- /luci-app-music-remote-center/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-mwan3helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mwan3helper/Makefile -------------------------------------------------------------------------------- /luci-app-mwan3helper/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-mwol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mwol/Makefile -------------------------------------------------------------------------------- /luci-app-mwol/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-mwol/po/zh_Hans/mwol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-mwol/po/zh_Hans/mwol.po -------------------------------------------------------------------------------- /luci-app-n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-n2n_v2/Makefile -------------------------------------------------------------------------------- /luci-app-n2n_v2/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-naiveproxy/Makefile -------------------------------------------------------------------------------- /luci-app-naiveproxy/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/Makefile -------------------------------------------------------------------------------- /luci-app-netdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/README.md -------------------------------------------------------------------------------- /luci-app-netdata/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netdata/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/readme.txt -------------------------------------------------------------------------------- /luci-app-netdata/web/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/web/dashboard.js -------------------------------------------------------------------------------- /luci-app-netdata/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/web/index.html -------------------------------------------------------------------------------- /luci-app-netdata/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netdata/web/main.js -------------------------------------------------------------------------------- /luci-app-netkeeper-interception/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-netspeedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netspeedtest/Makefile -------------------------------------------------------------------------------- /luci-app-netspeedtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-netspeedtest/README.md -------------------------------------------------------------------------------- /luci-app-netspeedtest/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-netspeedtest/root/usr/share/netspeedtest/netspeedtest.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-nfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nfs/Makefile -------------------------------------------------------------------------------- /luci-app-nfs/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-nfs/po/zh_Hans/nfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nfs/po/zh_Hans/nfs.po -------------------------------------------------------------------------------- /luci-app-nfs/root/etc/config/nfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nfs/root/etc/config/nfs -------------------------------------------------------------------------------- /luci-app-nfs/root/etc/init.d/nfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nfs/root/etc/init.d/nfs -------------------------------------------------------------------------------- /luci-app-nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nft-qos/Makefile -------------------------------------------------------------------------------- /luci-app-nft-qos/po/ar/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nft-qos/po/ar/nft-qos.po -------------------------------------------------------------------------------- /luci-app-nft-qos/po/bg/nft-qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nft-qos/po/bg/nft-qos.po -------------------------------------------------------------------------------- /luci-app-nft-qos/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-nginx-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nginx-manager/Makefile -------------------------------------------------------------------------------- /luci-app-nginx-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nginx-manager/README.md -------------------------------------------------------------------------------- /luci-app-nginx-manager/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-nginx-pingos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nginx-pingos/Makefile -------------------------------------------------------------------------------- /luci-app-nginx-pingos/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ngrokc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ngrokc/Makefile -------------------------------------------------------------------------------- /luci-app-ngrokc/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-njitclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-njitclient/Makefile -------------------------------------------------------------------------------- /luci-app-nps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nps/Makefile -------------------------------------------------------------------------------- /luci-app-nps/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-nps/po/zh_Hans/nps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nps/po/zh_Hans/nps.po -------------------------------------------------------------------------------- /luci-app-nps/root/etc/config/nps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nps/root/etc/config/nps -------------------------------------------------------------------------------- /luci-app-nps/root/etc/init.d/nps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-nps/root/etc/init.d/nps -------------------------------------------------------------------------------- /luci-app-oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oaf/Makefile -------------------------------------------------------------------------------- /luci-app-oaf/po/zh-cn/oaf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oaf/po/zh-cn/oaf.po -------------------------------------------------------------------------------- /luci-app-oaf/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-oled/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/.gitattributes -------------------------------------------------------------------------------- /luci-app-oled/.gitignore: -------------------------------------------------------------------------------- 1 | */.DS_Store 2 | -------------------------------------------------------------------------------- /luci-app-oled/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/LICENSE -------------------------------------------------------------------------------- /luci-app-oled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/Makefile -------------------------------------------------------------------------------- /luci-app-oled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/README.md -------------------------------------------------------------------------------- /luci-app-oled/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-oled/po/zh_Hans/oled.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/po/zh_Hans/oled.po -------------------------------------------------------------------------------- /luci-app-oled/po/zh_Hant/oled.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/po/zh_Hant/oled.po -------------------------------------------------------------------------------- /luci-app-oled/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/src/LICENSE -------------------------------------------------------------------------------- /luci-app-oled/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/src/Makefile -------------------------------------------------------------------------------- /luci-app-oled/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oled/src/README.md -------------------------------------------------------------------------------- /luci-app-onliner/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-onliner/.gitattributes -------------------------------------------------------------------------------- /luci-app-onliner/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak 3 | -------------------------------------------------------------------------------- /luci-app-onliner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-onliner/Makefile -------------------------------------------------------------------------------- /luci-app-onliner/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-onliner/readme.md -------------------------------------------------------------------------------- /luci-app-openclash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-openclash/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns.list: -------------------------------------------------------------------------------- 1 | #baidu.com -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Youku: -------------------------------------------------------------------------------- 1 | payload: 2 | # > Youku 3 | - IP-CIDR,106.11.0.0/16,no-resolve -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/dashboard/CNAME: -------------------------------------------------------------------------------- 1 | clash.razord.top -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yacd/CNAME: -------------------------------------------------------------------------------- 1 | yacd.haishan.me 2 | -------------------------------------------------------------------------------- /luci-app-openvpn-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-openvpn-server/Makefile -------------------------------------------------------------------------------- /luci-app-openvpn-server/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-openvpn-server/root/etc/openvpn/ovpnadd/ovpnadd.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-oscam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-oscam/Makefile -------------------------------------------------------------------------------- /luci-app-oscam/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /luci-app-passwall/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-poweroff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-poweroff/LICENSE -------------------------------------------------------------------------------- /luci-app-poweroff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-poweroff/Makefile -------------------------------------------------------------------------------- /luci-app-poweroff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-poweroff/README.md -------------------------------------------------------------------------------- /luci-app-poweroff/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-pppoe-relay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-pppoe-relay/Makefile -------------------------------------------------------------------------------- /luci-app-pppoe-relay/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-pppoe-relay/root/etc/config/pppoe-relay: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-pppoe-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-pppoe-server/Makefile -------------------------------------------------------------------------------- /luci-app-pppoe-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-pptp-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-pptp-server/Makefile -------------------------------------------------------------------------------- /luci-app-pptp-server/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-ps3netsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ps3netsrv/Makefile -------------------------------------------------------------------------------- /luci-app-ps3netsrv/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-pushbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-pushbot/Makefile -------------------------------------------------------------------------------- /luci-app-pushbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-pushbot/README.md -------------------------------------------------------------------------------- /luci-app-pushbot/root/usr/bin/pushbot/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-qbittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-qbittorrent/Makefile -------------------------------------------------------------------------------- /luci-app-qbittorrent/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ramfree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ramfree/Makefile -------------------------------------------------------------------------------- /luci-app-ramfree/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ramfree/po/zh_Hans/release_ram.po: -------------------------------------------------------------------------------- 1 | msgid "Release Ram" 2 | msgstr "释放内存" 3 | -------------------------------------------------------------------------------- /luci-app-rclone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rclone/Makefile -------------------------------------------------------------------------------- /luci-app-rclone/po/en/rclone.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rclone/po/en/rclone.po -------------------------------------------------------------------------------- /luci-app-rclone/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-rtorrent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rtorrent/.gitignore -------------------------------------------------------------------------------- /luci-app-rtorrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rtorrent/LICENSE -------------------------------------------------------------------------------- /luci-app-rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rtorrent/Makefile -------------------------------------------------------------------------------- /luci-app-rtorrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rtorrent/README.md -------------------------------------------------------------------------------- /luci-app-rtorrent/control/conffiles: -------------------------------------------------------------------------------- 1 | /etc/config/rtorrent 2 | -------------------------------------------------------------------------------- /luci-app-rtorrent/control/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-rtorrent/control/prerm -------------------------------------------------------------------------------- /luci-app-rtorrent/src/etc/config/rtorrent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-rtorrent/src/etc/luci-uploads/rtorrent/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/7z.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/ac3.png: -------------------------------------------------------------------------------- 1 | music.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/arj.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/avi.png: -------------------------------------------------------------------------------- 1 | video.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/bat.png: -------------------------------------------------------------------------------- 1 | script.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/bmp.png: -------------------------------------------------------------------------------- 1 | image.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/bz2.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/c.png: -------------------------------------------------------------------------------- 1 | code.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/cab.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/cgi.png: -------------------------------------------------------------------------------- 1 | script.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/cpp.png: -------------------------------------------------------------------------------- 1 | code.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/dts.png: -------------------------------------------------------------------------------- 1 | music.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/elf.png: -------------------------------------------------------------------------------- 1 | linux.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/exe.png: -------------------------------------------------------------------------------- 1 | app.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/f4v.png: -------------------------------------------------------------------------------- 1 | flash.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/flac.png: -------------------------------------------------------------------------------- 1 | music.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/flv.png: -------------------------------------------------------------------------------- 1 | flash.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/gif.png: -------------------------------------------------------------------------------- 1 | image.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/gz.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/h.png: -------------------------------------------------------------------------------- 1 | code.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/htm.png: -------------------------------------------------------------------------------- 1 | html.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/iso.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/jar.png: -------------------------------------------------------------------------------- 1 | java.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/jpeg.png: -------------------------------------------------------------------------------- 1 | image.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/jpg.png: -------------------------------------------------------------------------------- 1 | image.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/lua.png: -------------------------------------------------------------------------------- 1 | script.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/mkv.png: -------------------------------------------------------------------------------- 1 | video.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/mov.png: -------------------------------------------------------------------------------- 1 | video.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/mp3.png: -------------------------------------------------------------------------------- 1 | music.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/mp4.png: -------------------------------------------------------------------------------- 1 | video.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/nfo.png: -------------------------------------------------------------------------------- 1 | txt.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/pl.png: -------------------------------------------------------------------------------- 1 | script.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/png.png: -------------------------------------------------------------------------------- 1 | image.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/rar.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/sh.png: -------------------------------------------------------------------------------- 1 | script.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/sqlite.png: -------------------------------------------------------------------------------- 1 | db.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/srt.png: -------------------------------------------------------------------------------- 1 | txt.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/tar.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/tgz.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/wma.png: -------------------------------------------------------------------------------- 1 | music.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/wmv.png: -------------------------------------------------------------------------------- 1 | video.png -------------------------------------------------------------------------------- /luci-app-rtorrent/src/www/luci-static/resources/icons/filetypes/zip.png: -------------------------------------------------------------------------------- 1 | archive.png -------------------------------------------------------------------------------- /luci-app-scutclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-scutclient/Makefile -------------------------------------------------------------------------------- /luci-app-serverchan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-serverchan/Makefile -------------------------------------------------------------------------------- /luci-app-serverchan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-serverchan/README.md -------------------------------------------------------------------------------- /luci-app-serverchan/root/usr/bin/serverchan/api/ip_blacklist: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-shortcutmenu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-shortcutmenu/Makefile -------------------------------------------------------------------------------- /luci-app-shortcutmenu/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-shortcutmenu/root/etc/config/shortcutmenu: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-siitwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-siitwizard/Makefile -------------------------------------------------------------------------------- /luci-app-sms-tool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-sms-tool/LICENSE -------------------------------------------------------------------------------- /luci-app-sms-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-sms-tool/Makefile -------------------------------------------------------------------------------- /luci-app-snmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-snmpd/Makefile -------------------------------------------------------------------------------- /luci-app-socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-socat/Makefile -------------------------------------------------------------------------------- /luci-app-socat/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-softether/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-softether/Makefile -------------------------------------------------------------------------------- /luci-app-softethervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-softethervpn/Makefile -------------------------------------------------------------------------------- /luci-app-softethervpn/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-softethervpn/root/etc/config/softethervpn: -------------------------------------------------------------------------------- 1 | 2 | config softether 3 | option enable '0' 4 | 5 | -------------------------------------------------------------------------------- /luci-app-speederv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-speederv2/Makefile -------------------------------------------------------------------------------- /luci-app-speederv2/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ssocks/Makefile -------------------------------------------------------------------------------- /luci-app-ssocks/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssocks/root/etc/config/ssocks-authorization: -------------------------------------------------------------------------------- 1 | ctcgfw:password -------------------------------------------------------------------------------- /luci-app-ssr-libev-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/mudb.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/shadowsocks/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-ssr-mudb-server/root/usr/share/ssr_mudb_server/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname $0` 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ssr-plus/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/config/shadowsocksr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/ad.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/black.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/white.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssrserver-python/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/debian/install: -------------------------------------------------------------------------------- 1 | debian/config.json etc/shadowsocks/ -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/mudb.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/shadowsocks/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-ssrserver-python/root/usr/share/ssr/tail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname $0` 3 | tail -f ssserver.log 4 | -------------------------------------------------------------------------------- /luci-app-store/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-store/API.md -------------------------------------------------------------------------------- /luci-app-store/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-store/Makefile -------------------------------------------------------------------------------- /luci-app-store/README.md: -------------------------------------------------------------------------------- 1 | # luci-app-store 2 | OpenWRT应用商店 3 | 4 | -------------------------------------------------------------------------------- /luci-app-store/root/bin/is-opkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-store/root/bin/is-opkg -------------------------------------------------------------------------------- /luci-app-store/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-store/src/Makefile -------------------------------------------------------------------------------- /luci-app-supervisord/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-supervisord/Makefile -------------------------------------------------------------------------------- /luci-app-supervisord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-supervisord/README.md -------------------------------------------------------------------------------- /luci-app-supervisord/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-syncdial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-syncdial/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-syncthing/Makefile -------------------------------------------------------------------------------- /luci-app-syncthing/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-sysuh3c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-sysuh3c/Makefile -------------------------------------------------------------------------------- /luci-app-tencentcloud-cos/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /luci-app-tencentcloud-cos/files/root/etc/passwd-cosfs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-tencentddns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-tencentddns/LICENSE -------------------------------------------------------------------------------- /luci-app-tencentddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-tencentddns/Makefile -------------------------------------------------------------------------------- /luci-app-timecontrol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-timecontrol/Makefile -------------------------------------------------------------------------------- /luci-app-timecontrol/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-timecontrol/root/etc/config/timecontrol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-timewol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-timewol/Makefile -------------------------------------------------------------------------------- /luci-app-timewol/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-timewol/po/zh_Hans/timewol.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-timewol/root/etc/config/timewol: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /luci-app-trojan-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-trojan-server/Makefile -------------------------------------------------------------------------------- /luci-app-trojan-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ttnode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ttnode/Makefile -------------------------------------------------------------------------------- /luci-app-ttnode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ttnode/README.md -------------------------------------------------------------------------------- /luci-app-ttyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-ttyd/Makefile -------------------------------------------------------------------------------- /luci-app-ttyd/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-turboacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-turboacc/Makefile -------------------------------------------------------------------------------- /luci-app-turboacc/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-udp2raw/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-udp2raw/.gitattributes -------------------------------------------------------------------------------- /luci-app-udp2raw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-udp2raw/LICENSE -------------------------------------------------------------------------------- /luci-app-udp2raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-udp2raw/Makefile -------------------------------------------------------------------------------- /luci-app-udp2raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-udp2raw/README.md -------------------------------------------------------------------------------- /luci-app-unblockmusic/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-unblockmusic/Config.in -------------------------------------------------------------------------------- /luci-app-unblockmusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-unblockmusic/Makefile -------------------------------------------------------------------------------- /luci-app-unblockmusic/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-usb-printer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-usb-printer/Makefile -------------------------------------------------------------------------------- /luci-app-usb-printer/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-usb-printer/root/etc/config/usb_printer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-usb3disable/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak 3 | -------------------------------------------------------------------------------- /luci-app-usb3disable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-usb3disable/Makefile -------------------------------------------------------------------------------- /luci-app-usb3disable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-usb3disable/README.md -------------------------------------------------------------------------------- /luci-app-uugamebooster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-uugamebooster/Makefile -------------------------------------------------------------------------------- /luci-app-uugamebooster/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-v2ray-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-v2ray-server/LICENSE -------------------------------------------------------------------------------- /luci-app-v2ray-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-v2ray-server/Makefile -------------------------------------------------------------------------------- /luci-app-v2ray-server/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-verysync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-verysync/Makefile -------------------------------------------------------------------------------- /luci-app-verysync/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vlmcsd/Makefile -------------------------------------------------------------------------------- /luci-app-vlmcsd/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-vsftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vsftpd/Makefile -------------------------------------------------------------------------------- /luci-app-vsftpd/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-vssr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vssr/LICENSE -------------------------------------------------------------------------------- /luci-app-vssr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vssr/Makefile -------------------------------------------------------------------------------- /luci-app-vssr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vssr/README.md -------------------------------------------------------------------------------- /luci-app-vssr/luasrc/view/vssr/cell_valuefooter.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /luci-app-vssr/po/zh-cn/vssr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vssr/po/zh-cn/vssr.po -------------------------------------------------------------------------------- /luci-app-vssr/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-vssr/relnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-vssr/relnotes.txt -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/ad.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/custom_domain.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/custom_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/disney_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/netflix_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/prime_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/tvb_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/tw_video_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/white.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-vssr/root/etc/vssr/youtube_ip.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-webadmin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-webadmin/Makefile -------------------------------------------------------------------------------- /luci-app-webadmin/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-webrestriction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-webrestriction/Makefile -------------------------------------------------------------------------------- /luci-app-webrestriction/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-webrestriction/po/zh_Hans/webrestriction.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-weburl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-weburl/Makefile -------------------------------------------------------------------------------- /luci-app-weburl/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-weburl/po/zh_Hans/weburl.po: -------------------------------------------------------------------------------- 1 | msgid "Control" 2 | msgstr "管控" 3 | -------------------------------------------------------------------------------- /luci-app-wifidog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wifidog/LICENSE -------------------------------------------------------------------------------- /luci-app-wifidog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wifidog/Makefile -------------------------------------------------------------------------------- /luci-app-wifidog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wifidog/README.md -------------------------------------------------------------------------------- /luci-app-wizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wizard/Makefile -------------------------------------------------------------------------------- /luci-app-wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wizard/README.md -------------------------------------------------------------------------------- /luci-app-wizard/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-wizard/root/etc/config/wizard: -------------------------------------------------------------------------------- 1 | config wizard 'default' 2 | -------------------------------------------------------------------------------- /luci-app-wolplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wolplus/Makefile -------------------------------------------------------------------------------- /luci-app-wolplus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wolplus/README.md -------------------------------------------------------------------------------- /luci-app-wolplus/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-wolplus/root/etc/config/wolplus: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-wrtbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-wrtbwmon/Makefile -------------------------------------------------------------------------------- /luci-app-wrtbwmon/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-xlnetacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-xlnetacc/Makefile -------------------------------------------------------------------------------- /luci-app-xlnetacc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-xlnetacc/README.md -------------------------------------------------------------------------------- /luci-app-xlnetacc/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-xunlei/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-xunlei/Makefile -------------------------------------------------------------------------------- /luci-app-xunlei/README.md: -------------------------------------------------------------------------------- 1 | # luci-app-xunlei 2 | openwrt的迅雷远程下载 3 | -------------------------------------------------------------------------------- /luci-app-zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-app-zerotier/Makefile -------------------------------------------------------------------------------- /luci-app-zerotier/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-zerotier/root/etc/zerotier/zerotier.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-lib-fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-lib-fs/Makefile -------------------------------------------------------------------------------- /luci-lib-fs/files/fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-lib-fs/files/fs.lua -------------------------------------------------------------------------------- /luci-proto-minieap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-proto-minieap/LICENSE -------------------------------------------------------------------------------- /luci-proto-minieap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-proto-minieap/Makefile -------------------------------------------------------------------------------- /luci-proto-minieap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-proto-minieap/README.md -------------------------------------------------------------------------------- /luci-proto-minieap/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-proto-netkeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-proto-netkeeper/Makefile -------------------------------------------------------------------------------- /luci-proto-netkeeper/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-theme-argon/.gitignore: -------------------------------------------------------------------------------- 1 | Screenshots 2 | -------------------------------------------------------------------------------- /luci-theme-argon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-argon/LICENSE -------------------------------------------------------------------------------- /luci-theme-argon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-argon/Makefile -------------------------------------------------------------------------------- /luci-theme-argon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-argon/README.md -------------------------------------------------------------------------------- /luci-theme-argon/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-argon/README_ZH.md -------------------------------------------------------------------------------- /luci-theme-argon/htdocs/luci-static/argon/background/README.md: -------------------------------------------------------------------------------- 1 | Drop background here! 2 | accept jpg png gif and mp4 3 | -------------------------------------------------------------------------------- /luci-theme-edge/.gitignore: -------------------------------------------------------------------------------- 1 | /Screenshots 2 | -------------------------------------------------------------------------------- /luci-theme-edge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-edge/Makefile -------------------------------------------------------------------------------- /luci-theme-edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/luci-theme-edge/README.md -------------------------------------------------------------------------------- /mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mentohust/Makefile -------------------------------------------------------------------------------- /microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/microsocks/Makefile -------------------------------------------------------------------------------- /miniupnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/miniupnpd/Makefile -------------------------------------------------------------------------------- /miniupnpd/files/firewall.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/miniupnpd/files/firewall.include -------------------------------------------------------------------------------- /miniupnpd/files/miniupnpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/miniupnpd/files/miniupnpd.init -------------------------------------------------------------------------------- /miniupnpd/files/upnpd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/miniupnpd/files/upnpd.config -------------------------------------------------------------------------------- /mosdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mosdns/Makefile -------------------------------------------------------------------------------- /mt-drivers/mt7603e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7603e/Makefile -------------------------------------------------------------------------------- /mt-drivers/mt7603e/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7603e/config.in -------------------------------------------------------------------------------- /mt-drivers/mt7603e/src/mt7603_wifi/include/phy/mt_phy.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /mt-drivers/mt7603e/src/mt7603_wifi/os/linux/monitor_mode.c: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | */ 4 | #include "rt_os_util.h" 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mt-drivers/mt7603e/src/mt7603_wifi/os/linux/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod rt2860ap 3 | -------------------------------------------------------------------------------- /mt-drivers/mt7603e/src/mt7603_wifi/tools/r.sh: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603e_ap 3 | -------------------------------------------------------------------------------- /mt-drivers/mt7612e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7612e/Makefile -------------------------------------------------------------------------------- /mt-drivers/mt7612e/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7612e/config.in -------------------------------------------------------------------------------- /mt-drivers/mt7612e/src/mt76x2/include/mlme_sys.h: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | */ 4 | 5 | 6 | #include "rtmp_type.h" 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mt-drivers/mt7615d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7615d/Makefile -------------------------------------------------------------------------------- /mt-drivers/mt7615d/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt7615d/config.in -------------------------------------------------------------------------------- /mt-drivers/mt7615d/src/mt_wifi/embedded/tools/r.sh: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603e_ap 3 | -------------------------------------------------------------------------------- /mt-drivers/mt7615d/src/mt_wifi/embedded/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603_ap 3 | 4 | -------------------------------------------------------------------------------- /mt-drivers/mt7615d/src/mt_wifi/include/phy/mt_phy.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /mt-drivers/mt7615d/src/mt_wifi/os/linux/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod rt2860ap 3 | -------------------------------------------------------------------------------- /mt-drivers/mt_wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt_wifi/Makefile -------------------------------------------------------------------------------- /mt-drivers/mt_wifi/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt-drivers/mt_wifi/config.in -------------------------------------------------------------------------------- /mt7601u-ap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mt7601u-ap/Makefile -------------------------------------------------------------------------------- /mtk-eip93/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/Makefile -------------------------------------------------------------------------------- /mtk-eip93/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/Makefile -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-cipher.c -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-cipher.h -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-common.h -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-core.c -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-core.h -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-prng.c -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-prng.h -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-regs.h -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-ring.c -------------------------------------------------------------------------------- /mtk-eip93/src/eip93-ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk-eip93/src/eip93-ring.h -------------------------------------------------------------------------------- /mtk_apcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk_apcli/Makefile -------------------------------------------------------------------------------- /mtk_apcli/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk_apcli/src/Makefile -------------------------------------------------------------------------------- /mtk_apcli/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk_apcli/src/main.c -------------------------------------------------------------------------------- /mtk_apcli/src/mtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk_apcli/src/mtk.h -------------------------------------------------------------------------------- /mtk_apcli/src/wext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mtk_apcli/src/wext.h -------------------------------------------------------------------------------- /mwan3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/Makefile -------------------------------------------------------------------------------- /mwan3/files/etc/config/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/etc/config/mwan3 -------------------------------------------------------------------------------- /mwan3/files/etc/init.d/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/etc/init.d/mwan3 -------------------------------------------------------------------------------- /mwan3/files/etc/mwan3.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/etc/mwan3.user -------------------------------------------------------------------------------- /mwan3/files/lib/mwan3/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/lib/mwan3/common.sh -------------------------------------------------------------------------------- /mwan3/files/lib/mwan3/mwan3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/lib/mwan3/mwan3.sh -------------------------------------------------------------------------------- /mwan3/files/usr/sbin/mwan3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/usr/sbin/mwan3 -------------------------------------------------------------------------------- /mwan3/files/usr/sbin/mwan3rtmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/usr/sbin/mwan3rtmon -------------------------------------------------------------------------------- /mwan3/files/usr/sbin/mwan3track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwan3/files/usr/sbin/mwan3track -------------------------------------------------------------------------------- /mwol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/Makefile -------------------------------------------------------------------------------- /mwol/files/mwol.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/mwol.config -------------------------------------------------------------------------------- /mwol/files/mwol.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/mwol.init -------------------------------------------------------------------------------- /mwol/files/mwol_config_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/mwol_config_json -------------------------------------------------------------------------------- /mwol/files/ssl/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/ssl/ca.crt -------------------------------------------------------------------------------- /mwol/files/ssl/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/ssl/client.crt -------------------------------------------------------------------------------- /mwol/files/ssl/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/mwol/files/ssl/client.key -------------------------------------------------------------------------------- /my-autocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/my-autocore/Makefile -------------------------------------------------------------------------------- /my-autocore/files/common/ethinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/my-autocore/files/common/ethinfo -------------------------------------------------------------------------------- /my-autocore/files/x86/autocore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/my-autocore/files/x86/autocore -------------------------------------------------------------------------------- /my-autocore/files/x86/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/my-autocore/files/x86/cpuinfo -------------------------------------------------------------------------------- /my-default-settings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/my-default-settings/Makefile -------------------------------------------------------------------------------- /my-default-settings/files/uci.defaults: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/n2n_v2/Makefile -------------------------------------------------------------------------------- /n2n_v2/files/n2n_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/n2n_v2/files/n2n_v2.config -------------------------------------------------------------------------------- /n2n_v2/files/n2n_v2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/n2n_v2/files/n2n_v2.init -------------------------------------------------------------------------------- /naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/naiveproxy/Makefile -------------------------------------------------------------------------------- /naiveproxy/src/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/naiveproxy/src/init_env.sh -------------------------------------------------------------------------------- /natflow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/Makefile -------------------------------------------------------------------------------- /natflow/files/natflow-boot.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/files/natflow-boot.init -------------------------------------------------------------------------------- /natflow/files/natflow-user.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/files/natflow-user.init -------------------------------------------------------------------------------- /natflow/files/natflow-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/files/natflow-user.sh -------------------------------------------------------------------------------- /natflow/files/natflow-zone.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/files/natflow-zone.init -------------------------------------------------------------------------------- /natflow/files/natflow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/natflow/files/natflow.config -------------------------------------------------------------------------------- /netkeeper-interception/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper-interception/Makefile -------------------------------------------------------------------------------- /netkeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/Makefile -------------------------------------------------------------------------------- /netkeeper/files/netkeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/files/netkeeper.sh -------------------------------------------------------------------------------- /netkeeper/files/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/files/ppp_defs.h -------------------------------------------------------------------------------- /netkeeper/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/src/Makefile -------------------------------------------------------------------------------- /netkeeper/src/hainan_sxplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/src/hainan_sxplugin.c -------------------------------------------------------------------------------- /netkeeper/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/src/md5.h -------------------------------------------------------------------------------- /netkeeper/src/sxplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/src/sxplugin.c -------------------------------------------------------------------------------- /netkeeper/src/sxplugin4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/netkeeper/src/sxplugin4.c -------------------------------------------------------------------------------- /nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/Makefile -------------------------------------------------------------------------------- /nft-qos/files/lib/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/core.sh -------------------------------------------------------------------------------- /nft-qos/files/lib/dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/dynamic.sh -------------------------------------------------------------------------------- /nft-qos/files/lib/mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/mac.sh -------------------------------------------------------------------------------- /nft-qos/files/lib/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/monitor.sh -------------------------------------------------------------------------------- /nft-qos/files/lib/priority.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/priority.sh -------------------------------------------------------------------------------- /nft-qos/files/lib/static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/lib/static.sh -------------------------------------------------------------------------------- /nft-qos/files/nft-qos.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/nft-qos.config -------------------------------------------------------------------------------- /nft-qos/files/nft-qos.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nft-qos/files/nft-qos.init -------------------------------------------------------------------------------- /ngrokc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ngrokc/Makefile -------------------------------------------------------------------------------- /njitclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/njitclient/Makefile -------------------------------------------------------------------------------- /nps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/nps/Makefile -------------------------------------------------------------------------------- /ntfs3-mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ntfs3-mount/Makefile -------------------------------------------------------------------------------- /ntfs3-mount/files/mount.ntfs3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mount -t ntfs3 -o nls=utf8 "$@" 3 | -------------------------------------------------------------------------------- /ntfs3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ntfs3/Makefile -------------------------------------------------------------------------------- /oaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/Makefile -------------------------------------------------------------------------------- /oaf/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/Makefile -------------------------------------------------------------------------------- /oaf/src/af_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_client.c -------------------------------------------------------------------------------- /oaf/src/af_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_client.h -------------------------------------------------------------------------------- /oaf/src/af_client_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_client_fs.c -------------------------------------------------------------------------------- /oaf/src/af_client_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_client_fs.h -------------------------------------------------------------------------------- /oaf/src/af_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_log.c -------------------------------------------------------------------------------- /oaf/src/af_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_log.h -------------------------------------------------------------------------------- /oaf/src/af_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_utils.c -------------------------------------------------------------------------------- /oaf/src/af_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/af_utils.h -------------------------------------------------------------------------------- /oaf/src/app_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/app_filter.c -------------------------------------------------------------------------------- /oaf/src/app_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/app_filter.h -------------------------------------------------------------------------------- /oaf/src/app_filter_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/app_filter_config.c -------------------------------------------------------------------------------- /oaf/src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/cJSON.c -------------------------------------------------------------------------------- /oaf/src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/cJSON.h -------------------------------------------------------------------------------- /oaf/src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oaf/src/regexp.c -------------------------------------------------------------------------------- /open-app-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/open-app-filter/Makefile -------------------------------------------------------------------------------- /open-app-filter/files/app_class.txt: -------------------------------------------------------------------------------- 1 | 1 聊天 2 | 2 游戏 3 | 3 视频 4 | 4 购物 5 | 5 音乐 6 | 6 招聘 7 | 7 下载 8 | 8 常用网站 -------------------------------------------------------------------------------- /open-app-filter/files/oaf_rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/open-app-filter/files/oaf_rule -------------------------------------------------------------------------------- /open-app-filter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/open-app-filter/src/Makefile -------------------------------------------------------------------------------- /open-app-filter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/open-app-filter/src/main.c -------------------------------------------------------------------------------- /openvpn-easy-rsa-whisky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn-easy-rsa-whisky/Makefile -------------------------------------------------------------------------------- /openvpn/Config-mbedtls.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/Config-mbedtls.in -------------------------------------------------------------------------------- /openvpn/Config-openssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/Config-openssl.in -------------------------------------------------------------------------------- /openvpn/Config-wolfssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/Config-wolfssl.in -------------------------------------------------------------------------------- /openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/Makefile -------------------------------------------------------------------------------- /openvpn/files/etc/openvpn.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/files/etc/openvpn.user -------------------------------------------------------------------------------- /openvpn/files/openvpn.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/files/openvpn.config -------------------------------------------------------------------------------- /openvpn/files/openvpn.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/files/openvpn.init -------------------------------------------------------------------------------- /openvpn/files/openvpn.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/files/openvpn.options -------------------------------------------------------------------------------- /openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /openvpn/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openvpn/test.sh -------------------------------------------------------------------------------- /openwrt-fullconenat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/openwrt-fullconenat/Makefile -------------------------------------------------------------------------------- /oscam/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/Config.in -------------------------------------------------------------------------------- /oscam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/Makefile -------------------------------------------------------------------------------- /oscam/files/oscam-watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam-watchdog.sh -------------------------------------------------------------------------------- /oscam/files/oscam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam.conf -------------------------------------------------------------------------------- /oscam/files/oscam.dvbapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam.dvbapi -------------------------------------------------------------------------------- /oscam/files/oscam.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam.init -------------------------------------------------------------------------------- /oscam/files/oscam.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam.server -------------------------------------------------------------------------------- /oscam/files/oscam.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/oscam/files/oscam.user -------------------------------------------------------------------------------- /pdnsd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/pdnsd-alt/Makefile -------------------------------------------------------------------------------- /pdnsd-alt/files/pdnsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/pdnsd-alt/files/pdnsd.init -------------------------------------------------------------------------------- /polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/polarssl/Makefile -------------------------------------------------------------------------------- /ps3netsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ps3netsrv/Makefile -------------------------------------------------------------------------------- /ps3netsrv/files/ps3netsrv.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ps3netsrv/files/ps3netsrv.config -------------------------------------------------------------------------------- /ps3netsrv/files/ps3netsrv.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ps3netsrv/files/ps3netsrv.init -------------------------------------------------------------------------------- /qBittorrent-static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qBittorrent-static/Makefile -------------------------------------------------------------------------------- /qBittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qBittorrent/Makefile -------------------------------------------------------------------------------- /qBittorrent/files/ipfilter.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qBittorrent/files/ipfilter.dat -------------------------------------------------------------------------------- /qtbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qtbase/Makefile -------------------------------------------------------------------------------- /qtbase/patches/010-gcc11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qtbase/patches/010-gcc11.patch -------------------------------------------------------------------------------- /qttools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/qttools/Makefile -------------------------------------------------------------------------------- /quickjspp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/quickjspp/Makefile -------------------------------------------------------------------------------- /r8125/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/Makefile -------------------------------------------------------------------------------- /r8125/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/Makefile -------------------------------------------------------------------------------- /r8125/src/Makefile_linux24x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/Makefile_linux24x -------------------------------------------------------------------------------- /r8125/src/r8125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125.h -------------------------------------------------------------------------------- /r8125/src/r8125_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_dash.h -------------------------------------------------------------------------------- /r8125/src/r8125_firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_firmware.c -------------------------------------------------------------------------------- /r8125/src/r8125_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_firmware.h -------------------------------------------------------------------------------- /r8125/src/r8125_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_n.c -------------------------------------------------------------------------------- /r8125/src/r8125_ptp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_ptp.c -------------------------------------------------------------------------------- /r8125/src/r8125_ptp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_ptp.h -------------------------------------------------------------------------------- /r8125/src/r8125_realwow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_realwow.h -------------------------------------------------------------------------------- /r8125/src/r8125_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_rss.c -------------------------------------------------------------------------------- /r8125/src/r8125_rss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/r8125_rss.h -------------------------------------------------------------------------------- /r8125/src/rtl_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/rtl_eeprom.c -------------------------------------------------------------------------------- /r8125/src/rtl_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/rtl_eeprom.h -------------------------------------------------------------------------------- /r8125/src/rtltool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/rtltool.c -------------------------------------------------------------------------------- /r8125/src/rtltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8125/src/rtltool.h -------------------------------------------------------------------------------- /r8152/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8152/Makefile -------------------------------------------------------------------------------- /r8168/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/r8168/Makefile -------------------------------------------------------------------------------- /rapidjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rapidjson/Makefile -------------------------------------------------------------------------------- /rblibtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rblibtorrent/Makefile -------------------------------------------------------------------------------- /redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/redsocks2/Makefile -------------------------------------------------------------------------------- /rtl8188eu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rtl8188eu/Makefile -------------------------------------------------------------------------------- /rtl8192eu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rtl8192eu/Makefile -------------------------------------------------------------------------------- /rtl8812au-ac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rtl8812au-ac/Makefile -------------------------------------------------------------------------------- /rtl8821cu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rtl8821cu/Makefile -------------------------------------------------------------------------------- /rtl88x2bu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/rtl88x2bu/Makefile -------------------------------------------------------------------------------- /scutclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/scutclient/Makefile -------------------------------------------------------------------------------- /shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /shadowsocksr-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/shadowsocksr-libev/Makefile -------------------------------------------------------------------------------- /shellsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/shellsync/Makefile -------------------------------------------------------------------------------- /shellsync/src/shellsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/shellsync/src/shellsync.c -------------------------------------------------------------------------------- /shortcut-fe/shortcut-fe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/shortcut-fe/shortcut-fe/Makefile -------------------------------------------------------------------------------- /simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/simple-obfs/Makefile -------------------------------------------------------------------------------- /smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/smartdns/Makefile -------------------------------------------------------------------------------- /smartdns/conf/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/smartdns/conf/custom.conf -------------------------------------------------------------------------------- /smartdns/conf/smartdns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/smartdns/conf/smartdns.conf -------------------------------------------------------------------------------- /sms-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/sms-tool/Makefile -------------------------------------------------------------------------------- /srelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/srelay/Makefile -------------------------------------------------------------------------------- /srelay/files/srelay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/srelay/files/srelay.conf -------------------------------------------------------------------------------- /srelay/files/srelay.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/srelay/files/srelay.init -------------------------------------------------------------------------------- /srelay/patches/001-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/srelay/patches/001-compile.patch -------------------------------------------------------------------------------- /ssocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ssocks/Makefile -------------------------------------------------------------------------------- /ssocks/patches/001-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ssocks/patches/001-fix.patch -------------------------------------------------------------------------------- /ssocks/patches/002-gcc10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/ssocks/patches/002-gcc10.patch -------------------------------------------------------------------------------- /sub-web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/sub-web/Makefile -------------------------------------------------------------------------------- /subconverter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/subconverter/Makefile -------------------------------------------------------------------------------- /sysuh3c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/sysuh3c/Makefile -------------------------------------------------------------------------------- /sysuh3c/files/sysuh3c.config: -------------------------------------------------------------------------------- 1 | 2 | config login 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /sysuh3c/files/sysuh3c.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/sysuh3c/files/sysuh3c.defaults -------------------------------------------------------------------------------- /sysuh3c/files/sysuh3c.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/sysuh3c/files/sysuh3c.init -------------------------------------------------------------------------------- /tcping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/tcping/Makefile -------------------------------------------------------------------------------- /tcpping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/tcpping/Makefile -------------------------------------------------------------------------------- /toml11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/toml11/Makefile -------------------------------------------------------------------------------- /trojan-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/trojan-go/Makefile -------------------------------------------------------------------------------- /trojan-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/trojan-plus/Makefile -------------------------------------------------------------------------------- /trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/trojan/Makefile -------------------------------------------------------------------------------- /uugamebooster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/uugamebooster/Makefile -------------------------------------------------------------------------------- /uugamebooster/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/uugamebooster/update.sh -------------------------------------------------------------------------------- /v2ray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/v2ray-core/Makefile -------------------------------------------------------------------------------- /v2ray-core/files/v2ray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/v2ray-core/files/v2ray.conf -------------------------------------------------------------------------------- /v2ray-core/files/v2ray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/v2ray-core/files/v2ray.init -------------------------------------------------------------------------------- /v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /verysync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/verysync/Makefile -------------------------------------------------------------------------------- /vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vlmcsd/Makefile -------------------------------------------------------------------------------- /vlmcsd/files/vlmcsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vlmcsd/files/vlmcsd.ini -------------------------------------------------------------------------------- /vlmcsd/files/vlmcsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vlmcsd/files/vlmcsd.init -------------------------------------------------------------------------------- /vsftpd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/Makefile -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd-uci.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd-uci.init -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd.conf -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd.init -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd.uci -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd_prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd_prepare -------------------------------------------------------------------------------- /vsftpd-alt/files/vsftpd_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/vsftpd-alt/files/vsftpd_wrapper -------------------------------------------------------------------------------- /wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wol/Makefile -------------------------------------------------------------------------------- /wrtbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wrtbwmon/Makefile -------------------------------------------------------------------------------- /wrtbwmon/net/etc/config/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wrtbwmon/net/etc/config/wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/etc/init.d/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wrtbwmon/net/etc/init.d/wrtbwmon -------------------------------------------------------------------------------- /wrtbwmon/net/usr/sbin/readDB.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wrtbwmon/net/usr/sbin/readDB.awk -------------------------------------------------------------------------------- /wrtbwmon/net/usr/sbin/wrtbwmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wrtbwmon/net/usr/sbin/wrtbwmon -------------------------------------------------------------------------------- /wxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/wxbase/Makefile -------------------------------------------------------------------------------- /xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/xray-core/Makefile -------------------------------------------------------------------------------- /xray-core/files/xray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/xray-core/files/xray.conf -------------------------------------------------------------------------------- /xray-core/files/xray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/xray-core/files/xray.init -------------------------------------------------------------------------------- /xray-core/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/xray-core/test.sh -------------------------------------------------------------------------------- /xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mopenwrt/kiddin9-openwrt-packages/HEAD/xray-plugin/Makefile --------------------------------------------------------------------------------