├── .gitignore ├── LICENSE ├── README.md ├── libs └── libudns │ ├── Makefile │ └── patches │ └── 100-cross-compile-dirty-fix.patch ├── luci ├── Makefile ├── applications │ └── luci-aria2 │ │ ├── Makefile │ │ ├── luasrc │ │ ├── controller │ │ │ └── aria2.lua │ │ └── model │ │ │ └── cbi │ │ │ └── aria2.lua │ │ └── root │ │ └── etc │ │ ├── config │ │ └── aria2 │ │ ├── init.d │ │ └── aria2 │ │ └── uci-defaults │ │ └── luci-aria2 ├── build │ ├── config.mk │ ├── gccconfig.mk │ ├── hostenv.sh │ ├── i18n-init.sh │ ├── i18n-po2lua.pl │ ├── i18n-scan.pl │ ├── i18n-sync.sh │ ├── i18n-update.pl │ ├── luci.cgi │ ├── lucid.lua │ ├── makedocs.sh │ ├── mkbasepot.sh │ ├── mkrevision.sh │ ├── mkversion.sh │ ├── module.mk │ ├── setup.lua │ └── zoneinfo2lua.pl ├── libs │ └── lmo │ │ ├── Makefile │ │ ├── src │ │ ├── po2lmo.c │ │ ├── template_lmo.c │ │ ├── template_lmo.h │ │ ├── template_lualib.c │ │ ├── template_lualib.h │ │ ├── template_parser.c │ │ ├── template_parser.h │ │ ├── template_utils.c │ │ └── template_utils.h │ │ └── standalone.mk ├── luci-extra │ └── Makefile └── po │ └── zh_CN │ └── aria2.po └── packages ├── dnscrypt-proxy ├── Makefile └── files │ ├── config │ └── init ├── shadowsocks-libev ├── Makefile └── files │ ├── shadowsocks.init │ └── shadowsocks.json ├── sniproxy ├── Makefile └── files │ ├── sniproxy.conf │ └── sniproxy.init ├── webui-aria2 └── Makefile └── yaaw └── Makefile /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/README.md -------------------------------------------------------------------------------- /libs/libudns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/libs/libudns/Makefile -------------------------------------------------------------------------------- /libs/libudns/patches/100-cross-compile-dirty-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/libs/libudns/patches/100-cross-compile-dirty-fix.patch -------------------------------------------------------------------------------- /luci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/Makefile -------------------------------------------------------------------------------- /luci/applications/luci-aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/Makefile -------------------------------------------------------------------------------- /luci/applications/luci-aria2/luasrc/controller/aria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/luasrc/controller/aria2.lua -------------------------------------------------------------------------------- /luci/applications/luci-aria2/luasrc/model/cbi/aria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/luasrc/model/cbi/aria2.lua -------------------------------------------------------------------------------- /luci/applications/luci-aria2/root/etc/config/aria2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/root/etc/config/aria2 -------------------------------------------------------------------------------- /luci/applications/luci-aria2/root/etc/init.d/aria2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/root/etc/init.d/aria2 -------------------------------------------------------------------------------- /luci/applications/luci-aria2/root/etc/uci-defaults/luci-aria2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/applications/luci-aria2/root/etc/uci-defaults/luci-aria2 -------------------------------------------------------------------------------- /luci/build/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/config.mk -------------------------------------------------------------------------------- /luci/build/gccconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/gccconfig.mk -------------------------------------------------------------------------------- /luci/build/hostenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/hostenv.sh -------------------------------------------------------------------------------- /luci/build/i18n-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/i18n-init.sh -------------------------------------------------------------------------------- /luci/build/i18n-po2lua.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/i18n-po2lua.pl -------------------------------------------------------------------------------- /luci/build/i18n-scan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/i18n-scan.pl -------------------------------------------------------------------------------- /luci/build/i18n-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/i18n-sync.sh -------------------------------------------------------------------------------- /luci/build/i18n-update.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/i18n-update.pl -------------------------------------------------------------------------------- /luci/build/luci.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/luci.cgi -------------------------------------------------------------------------------- /luci/build/lucid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/lucid.lua -------------------------------------------------------------------------------- /luci/build/makedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/makedocs.sh -------------------------------------------------------------------------------- /luci/build/mkbasepot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/mkbasepot.sh -------------------------------------------------------------------------------- /luci/build/mkrevision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/mkrevision.sh -------------------------------------------------------------------------------- /luci/build/mkversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/mkversion.sh -------------------------------------------------------------------------------- /luci/build/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/module.mk -------------------------------------------------------------------------------- /luci/build/setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/setup.lua -------------------------------------------------------------------------------- /luci/build/zoneinfo2lua.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/build/zoneinfo2lua.pl -------------------------------------------------------------------------------- /luci/libs/lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/Makefile -------------------------------------------------------------------------------- /luci/libs/lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_lmo.h -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_lualib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_lualib.c -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_lualib.h -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_parser.c -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_parser.h -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_utils.c -------------------------------------------------------------------------------- /luci/libs/lmo/src/template_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/src/template_utils.h -------------------------------------------------------------------------------- /luci/libs/lmo/standalone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/libs/lmo/standalone.mk -------------------------------------------------------------------------------- /luci/luci-extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/luci-extra/Makefile -------------------------------------------------------------------------------- /luci/po/zh_CN/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/luci/po/zh_CN/aria2.po -------------------------------------------------------------------------------- /packages/dnscrypt-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/dnscrypt-proxy/Makefile -------------------------------------------------------------------------------- /packages/dnscrypt-proxy/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/dnscrypt-proxy/files/config -------------------------------------------------------------------------------- /packages/dnscrypt-proxy/files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/dnscrypt-proxy/files/init -------------------------------------------------------------------------------- /packages/shadowsocks-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/shadowsocks-libev/Makefile -------------------------------------------------------------------------------- /packages/shadowsocks-libev/files/shadowsocks.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/shadowsocks-libev/files/shadowsocks.init -------------------------------------------------------------------------------- /packages/shadowsocks-libev/files/shadowsocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/shadowsocks-libev/files/shadowsocks.json -------------------------------------------------------------------------------- /packages/sniproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/sniproxy/Makefile -------------------------------------------------------------------------------- /packages/sniproxy/files/sniproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/sniproxy/files/sniproxy.conf -------------------------------------------------------------------------------- /packages/sniproxy/files/sniproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/sniproxy/files/sniproxy.init -------------------------------------------------------------------------------- /packages/webui-aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/webui-aria2/Makefile -------------------------------------------------------------------------------- /packages/yaaw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanpuyue/openwrt-extra/HEAD/packages/yaaw/Makefile --------------------------------------------------------------------------------