├── Makefile ├── README.md ├── files ├── etc │ ├── config │ │ ├── ssrr │ │ └── ssrrmore │ ├── init.d │ │ └── ssr-redir.sh │ └── ssrr │ │ ├── china_route │ │ ├── shadowsocksr.json │ │ ├── update_chinaroute.sh │ │ ├── user_local_ip │ │ └── user_remote_ip └── usr │ └── lib │ └── lua │ └── luci │ ├── controller │ └── ssrr.lua │ └── model │ └── cbi │ └── shadowsocksr │ ├── general.lua │ └── gfwlist.lua ├── i18n └── zh-cn │ └── shadowsocksR.zh-cn.po ├── screencapture1.png ├── screencapture2.png └── tools └── po2lmo ├── Makefile └── src ├── po2lmo ├── po2lmo.c ├── po2lmo.o ├── template_lmo.c ├── template_lmo.h └── template_lmo.o /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/README.md -------------------------------------------------------------------------------- /files/etc/config/ssrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/config/ssrr -------------------------------------------------------------------------------- /files/etc/config/ssrrmore: -------------------------------------------------------------------------------- 1 | 2 | config params -------------------------------------------------------------------------------- /files/etc/init.d/ssr-redir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/init.d/ssr-redir.sh -------------------------------------------------------------------------------- /files/etc/ssrr/china_route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/ssrr/china_route -------------------------------------------------------------------------------- /files/etc/ssrr/shadowsocksr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/ssrr/shadowsocksr.json -------------------------------------------------------------------------------- /files/etc/ssrr/update_chinaroute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/ssrr/update_chinaroute.sh -------------------------------------------------------------------------------- /files/etc/ssrr/user_local_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/ssrr/user_local_ip -------------------------------------------------------------------------------- /files/etc/ssrr/user_remote_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/etc/ssrr/user_remote_ip -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/controller/ssrr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/usr/lib/lua/luci/controller/ssrr.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/model/cbi/shadowsocksr/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/usr/lib/lua/luci/model/cbi/shadowsocksr/general.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/model/cbi/shadowsocksr/gfwlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/files/usr/lib/lua/luci/model/cbi/shadowsocksr/gfwlist.lua -------------------------------------------------------------------------------- /i18n/zh-cn/shadowsocksR.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/i18n/zh-cn/shadowsocksR.zh-cn.po -------------------------------------------------------------------------------- /screencapture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/screencapture1.png -------------------------------------------------------------------------------- /screencapture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/screencapture2.png -------------------------------------------------------------------------------- /tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /tools/po2lmo/src/po2lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/po2lmo -------------------------------------------------------------------------------- /tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /tools/po2lmo/src/po2lmo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/po2lmo.o -------------------------------------------------------------------------------- /tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /tools/po2lmo/src/template_lmo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexZhuo/luci-app-shadowsocksR/HEAD/tools/po2lmo/src/template_lmo.o --------------------------------------------------------------------------------