From 924a190ee0d97d814824514830811d6575b0bcd2 Mon Sep 17 00:00:00 2001 From: Nevin Date: Thu, 18 Jul 2024 10:05:22 +0800 Subject: [PATCH] add kcptransport to readme --- README.en.md | 2 ++ README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.en.md b/README.en.md index 4a6246fa..a4e19dac 100644 --- a/README.en.md +++ b/README.en.md @@ -166,6 +166,8 @@ Both the use and configuration of the protocol is very simple, in most cases, af - [csharp-kcp](https://github.com/l42111996/csharp-kcp): csharp version KCP, based on dotNetty implementation (including fec function) - [kcp-go](https://github.com/xtaci/kcp-go): High-security GO language implementation of kcp, including simple implementation of UDP session management, as a base library for subsequent development. - [kcp-csharp](https://github.com/limpo1989/kcp-csharp): The csharp migration of kcp, containing the session management, which can access the above kcp-go server. +- [KcpTransport](https://github.com/Cysharp/KcpTransport): KcpTransport is built on top of KCP ported to Pure C#, with implementations of Syn Cookie handshake, connection management, Unreliable communication, and KeepAlive. In the future, encryption will also be supported. +- [Kcp-CSharp](https://github.com/Molth/Kcp-CSharp): a pure C# KCP instance callback(delegate) wrapper for (Unity/Godot/.NET) - [kcp2k](https://github.com/vis2k/kcp2k/): Line-by-line translation to C#, with optional Server/Client on top. - [kcp-rs](https://github.com/en/kcp-rs): The rust migration of KCP - [kcp-rust-native](https://github.com/b23r0/kcp-rust-native):KCP bindings for Rust diff --git a/README.md b/README.md index 977dd1f4..f1e18005 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,8 @@ vcpkg中的kcp库由Microsoft团队成员和社区贡献者保持最新状态。 - [kcp-go](https://github.com/xtaci/kcp-go): 高安全性的kcp的 GO语言实现,包含 UDP会话管理的简单实现,可以作为后续开发的基础库。 - [kcp-csharp](https://github.com/limpo1989/kcp-csharp): kcp的 csharp移植,同时包含一份回话管理,可以连接上面kcp-go的服务端。 - [kcp-csharp](https://github.com/KumoKyaku/KCP): 新版本 Kcp的 csharp移植。线程安全,运行时无alloc,对gc无压力。 +- [KcpTransport](https://github.com/Cysharp/KcpTransport): kcp的csharp移植,实现了 Syn Cookie 握手、连接管理、不可靠通信、KeepAlive,未来还将支持加密。 +- [Kcp-CSharp](https://github.com/Molth/Kcp-CSharp): kcp的csharp移植,非托管包装器。 - [kcp2k](https://github.com/vis2k/kcp2k/): Line-by-line translation to C#, with optional Server/Client on top. - [kcp-rs](https://github.com/en/kcp-rs): KCP的 rust移植 - [kcp-rust](https://github.com/Matrix-Zhang/kcp):新版本 KCP的 rust 移植