├── LICENSE ├── Makefile ├── README.md ├── files ├── luci │ ├── controller │ │ └── brook.lua │ ├── i18n │ │ └── brook.zh-cn.po │ ├── model │ │ └── cbi │ │ │ └── brook │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── gfwlist-custom.lua │ │ │ └── status.lua │ └── view │ │ └── brook │ │ └── refresh.htm └── root │ ├── etc │ ├── china_ip.txt │ ├── config │ │ └── brook │ ├── dnsmasq.brook │ │ ├── custom_list.conf │ │ └── gfw_list.conf │ ├── init.d │ │ └── brook │ └── uci-defaults │ │ └── luci-brook │ └── usr │ └── bin │ ├── brook-ad │ └── brook-gfw └── tools └── po2lmo ├── Makefile └── src ├── po2lmo.c ├── template_lmo.c └── template_lmo.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/README.md -------------------------------------------------------------------------------- /files/luci/controller/brook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/controller/brook.lua -------------------------------------------------------------------------------- /files/luci/i18n/brook.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/i18n/brook.zh-cn.po -------------------------------------------------------------------------------- /files/luci/model/cbi/brook/client-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/model/cbi/brook/client-config.lua -------------------------------------------------------------------------------- /files/luci/model/cbi/brook/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/model/cbi/brook/client.lua -------------------------------------------------------------------------------- /files/luci/model/cbi/brook/gfwlist-custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/model/cbi/brook/gfwlist-custom.lua -------------------------------------------------------------------------------- /files/luci/model/cbi/brook/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/model/cbi/brook/status.lua -------------------------------------------------------------------------------- /files/luci/view/brook/refresh.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/luci/view/brook/refresh.htm -------------------------------------------------------------------------------- /files/root/etc/china_ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/china_ip.txt -------------------------------------------------------------------------------- /files/root/etc/config/brook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/config/brook -------------------------------------------------------------------------------- /files/root/etc/dnsmasq.brook/custom_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/dnsmasq.brook/custom_list.conf -------------------------------------------------------------------------------- /files/root/etc/dnsmasq.brook/gfw_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/dnsmasq.brook/gfw_list.conf -------------------------------------------------------------------------------- /files/root/etc/init.d/brook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/init.d/brook -------------------------------------------------------------------------------- /files/root/etc/uci-defaults/luci-brook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/etc/uci-defaults/luci-brook -------------------------------------------------------------------------------- /files/root/usr/bin/brook-ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/usr/bin/brook-ad -------------------------------------------------------------------------------- /files/root/usr/bin/brook-gfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/files/root/usr/bin/brook-gfw -------------------------------------------------------------------------------- /tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WouldChar/openwrt-brook-tproxy/HEAD/tools/po2lmo/src/template_lmo.h --------------------------------------------------------------------------------