├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── Vagrantfile ├── cache └── .gitignore ├── cookbooks └── init │ └── recipes │ └── default.rb ├── libcares.mk ├── libcrypto.mbedtls.mk ├── libcrypto.mk ├── libev.mk ├── libpcre.mk ├── libsodium.mk ├── patch ├── 000-uclibc-atomic.patch ├── 001-thread-storage-class.patch └── 002-fix-001.patch ├── releases └── .gitignore ├── toolchain.arm.mk ├── toolchain.mipsel.mk └── toolchain.mk /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cookbooks/init/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/cookbooks/init/recipes/default.rb -------------------------------------------------------------------------------- /libcares.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libcares.mk -------------------------------------------------------------------------------- /libcrypto.mbedtls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libcrypto.mbedtls.mk -------------------------------------------------------------------------------- /libcrypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libcrypto.mk -------------------------------------------------------------------------------- /libev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libev.mk -------------------------------------------------------------------------------- /libpcre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libpcre.mk -------------------------------------------------------------------------------- /libsodium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/libsodium.mk -------------------------------------------------------------------------------- /patch/000-uclibc-atomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/patch/000-uclibc-atomic.patch -------------------------------------------------------------------------------- /patch/001-thread-storage-class.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/patch/001-thread-storage-class.patch -------------------------------------------------------------------------------- /patch/002-fix-001.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/patch/002-fix-001.patch -------------------------------------------------------------------------------- /releases/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /toolchain.arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/toolchain.arm.mk -------------------------------------------------------------------------------- /toolchain.mipsel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/toolchain.mipsel.mk -------------------------------------------------------------------------------- /toolchain.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xc2/shadowsocks-libev-tomato/HEAD/toolchain.mk --------------------------------------------------------------------------------