├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── codeql-buildscript.sh │ ├── codeql.yml │ └── fail_on_error.py ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CONTRIBUTING_CN.md ├── LICENSE ├── README.md ├── bbr_http_server.png ├── bbr_http_server_clan.png ├── client.json ├── commandline.c ├── commandline.h ├── contributors.md ├── debug.c ├── debug.h ├── ikcp.c ├── ikcp.h ├── json.c ├── json.h ├── jwHash.c ├── jwHash.h ├── kcp_http_server.png ├── kcp_http_server_clan.png ├── kcptun.png ├── logo-big.png ├── logo.png ├── server.json ├── tcp_client.c ├── tcp_client.h ├── tcp_proxy.c ├── tcp_proxy.h ├── version.h ├── xkcp_client.c ├── xkcp_client.h ├── xkcp_config.c ├── xkcp_config.h ├── xkcp_mon.c ├── xkcp_mon.h ├── xkcp_server.c ├── xkcp_server.h ├── xkcp_spy.c ├── xkcp_util.c ├── xkcp_util.h └── xkcptun.service /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://paypal.me/liudf0716 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-buildscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.github/workflows/codeql-buildscript.sh -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/fail_on_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.github/workflows/fail_on_error.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/CONTRIBUTING_CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/README.md -------------------------------------------------------------------------------- /bbr_http_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/bbr_http_server.png -------------------------------------------------------------------------------- /bbr_http_server_clan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/bbr_http_server_clan.png -------------------------------------------------------------------------------- /client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/client.json -------------------------------------------------------------------------------- /commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/commandline.c -------------------------------------------------------------------------------- /commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/commandline.h -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/contributors.md -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/debug.h -------------------------------------------------------------------------------- /ikcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/ikcp.c -------------------------------------------------------------------------------- /ikcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/ikcp.h -------------------------------------------------------------------------------- /json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/json.c -------------------------------------------------------------------------------- /json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/json.h -------------------------------------------------------------------------------- /jwHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/jwHash.c -------------------------------------------------------------------------------- /jwHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/jwHash.h -------------------------------------------------------------------------------- /kcp_http_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/kcp_http_server.png -------------------------------------------------------------------------------- /kcp_http_server_clan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/kcp_http_server_clan.png -------------------------------------------------------------------------------- /kcptun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/kcptun.png -------------------------------------------------------------------------------- /logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/logo-big.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/logo.png -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/server.json -------------------------------------------------------------------------------- /tcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/tcp_client.c -------------------------------------------------------------------------------- /tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/tcp_client.h -------------------------------------------------------------------------------- /tcp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/tcp_proxy.c -------------------------------------------------------------------------------- /tcp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/tcp_proxy.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/version.h -------------------------------------------------------------------------------- /xkcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_client.c -------------------------------------------------------------------------------- /xkcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_client.h -------------------------------------------------------------------------------- /xkcp_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_config.c -------------------------------------------------------------------------------- /xkcp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_config.h -------------------------------------------------------------------------------- /xkcp_mon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_mon.c -------------------------------------------------------------------------------- /xkcp_mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_mon.h -------------------------------------------------------------------------------- /xkcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_server.c -------------------------------------------------------------------------------- /xkcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_server.h -------------------------------------------------------------------------------- /xkcp_spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_spy.c -------------------------------------------------------------------------------- /xkcp_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_util.c -------------------------------------------------------------------------------- /xkcp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcp_util.h -------------------------------------------------------------------------------- /xkcptun.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liudf0716/xkcptun/HEAD/xkcptun.service --------------------------------------------------------------------------------