├── README.md ├── luci-app-xkcptun ├── Makefile ├── luasrc │ ├── controller │ │ └── xkcptun.lua │ └── model │ │ └── cbi │ │ └── xkcptun.lua └── root │ └── etc │ └── uci-defaults │ └── 90_luci_xkcptun └── xkcptun ├── Makefile └── files ├── xkcptun.config └── xkcptun_client.init /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/README.md -------------------------------------------------------------------------------- /luci-app-xkcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/luci-app-xkcptun/Makefile -------------------------------------------------------------------------------- /luci-app-xkcptun/luasrc/controller/xkcptun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/luci-app-xkcptun/luasrc/controller/xkcptun.lua -------------------------------------------------------------------------------- /luci-app-xkcptun/luasrc/model/cbi/xkcptun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/luci-app-xkcptun/luasrc/model/cbi/xkcptun.lua -------------------------------------------------------------------------------- /luci-app-xkcptun/root/etc/uci-defaults/90_luci_xkcptun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/luci-app-xkcptun/root/etc/uci-defaults/90_luci_xkcptun -------------------------------------------------------------------------------- /xkcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/xkcptun/Makefile -------------------------------------------------------------------------------- /xkcptun/files/xkcptun.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/xkcptun/files/xkcptun.config -------------------------------------------------------------------------------- /xkcptun/files/xkcptun_client.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigibox/openwrt-xkcptun/HEAD/xkcptun/files/xkcptun_client.init --------------------------------------------------------------------------------