Merge pull request #435 from quqiOnfree/master

添加现代C++/Asio的KCP支持
This commit is contained in:
Linwei 2024-12-01 01:49:42 +08:00 committed by GitHub
commit 7f9805887b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -185,7 +185,8 @@ Both the use and configuration of the protocol is very simple, in most cases, af
- [gouxp](https://github.com/shaoyuan1943/gouxp): Implementing a callback-based KCP development package with Go, with decryption and FEC support, is easy to use. - [gouxp](https://github.com/shaoyuan1943/gouxp): Implementing a callback-based KCP development package with Go, with decryption and FEC support, is easy to use.
- [kcp.py](https://github.com/RealistikDash/kcp.py): Python bindings and networking with an emphasis on dev friendliness. - [kcp.py](https://github.com/RealistikDash/kcp.py): Python bindings and networking with an emphasis on dev friendliness.
- [pykcp](https://github.com/enkiller/pykcp): KCP implementation for Python version. - [pykcp](https://github.com/enkiller/pykcp): KCP implementation for Python version.
- [php-ext-kcp](https://github.com/wpjscc/php-ext-kcp): php extension for KCP - [php-ext-kcp](https://github.com/wpjscc/php-ext-kcp): php extension for KCP.
- [asio-kcp(new)](https://github.com/sniper00/asio-kcp): KCP implementation for C++/Asio, with Modern C++/Asio async features, such as coroutine.
# Protocol Comparison # Protocol Comparison

View File

@ -189,7 +189,8 @@ vcpkg中的kcp库由Microsoft团队成员和社区贡献者保持最新状态。
- [gouxp](https://github.com/shaoyuan1943/gouxp): 用Go实现基于回调方式的KCP开发包包含加解密和FEC支持简单易用。 - [gouxp](https://github.com/shaoyuan1943/gouxp): 用Go实现基于回调方式的KCP开发包包含加解密和FEC支持简单易用。
- [skcp](https://github.com/xboss/skcp): 基于libev实现的库具备传输加密及基本的连接管理能力。 - [skcp](https://github.com/xboss/skcp): 基于libev实现的库具备传输加密及基本的连接管理能力。
- [pykcp](https://github.com/enkiller/pykcp): Python 版本的 KCP 实现 - [pykcp](https://github.com/enkiller/pykcp): Python 版本的 KCP 实现
- [php-ext-kcp](https://github.com/wpjscc/php-ext-kcp): php 的 KCP 扩展 - [php-ext-kcp](https://github.com/wpjscc/php-ext-kcp): php 的 KCP 扩展
- [asio-kcp(new)](https://github.com/sniper00/asio-kcp): c++的asio/kcp支持支持asio协程等现代c++异步模型
# 商业案例 # 商业案例