├── .drone.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── encoding.h ├── fec.cpp ├── fec.h ├── fec_test.cpp ├── galois.cpp ├── galois.h ├── galois_noasm.cpp ├── galois_noasm.h ├── galois_table.c ├── ikcp.c ├── ikcp.h ├── inversion_tree.cpp ├── inversion_tree.h ├── kcp_test.cpp ├── kcpserver.go ├── logo.png ├── matrix.cpp ├── matrix.h ├── reedsolomon.cpp ├── reedsolomon.h ├── sess.cpp └── sess.h /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/README.md -------------------------------------------------------------------------------- /encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/encoding.h -------------------------------------------------------------------------------- /fec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/fec.cpp -------------------------------------------------------------------------------- /fec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/fec.h -------------------------------------------------------------------------------- /fec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/fec_test.cpp -------------------------------------------------------------------------------- /galois.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/galois.cpp -------------------------------------------------------------------------------- /galois.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/galois.h -------------------------------------------------------------------------------- /galois_noasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/galois_noasm.cpp -------------------------------------------------------------------------------- /galois_noasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/galois_noasm.h -------------------------------------------------------------------------------- /galois_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/galois_table.c -------------------------------------------------------------------------------- /ikcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/ikcp.c -------------------------------------------------------------------------------- /ikcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/ikcp.h -------------------------------------------------------------------------------- /inversion_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/inversion_tree.cpp -------------------------------------------------------------------------------- /inversion_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/inversion_tree.h -------------------------------------------------------------------------------- /kcp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/kcp_test.cpp -------------------------------------------------------------------------------- /kcpserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/kcpserver.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/logo.png -------------------------------------------------------------------------------- /matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/matrix.cpp -------------------------------------------------------------------------------- /matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/matrix.h -------------------------------------------------------------------------------- /reedsolomon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/reedsolomon.cpp -------------------------------------------------------------------------------- /reedsolomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/reedsolomon.h -------------------------------------------------------------------------------- /sess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/sess.cpp -------------------------------------------------------------------------------- /sess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtaci/libkcp/HEAD/sess.h --------------------------------------------------------------------------------