Kerry Jiang
Kerry Jiang
没有,但是快了
I am going to make a stable release for SuperSocket 2.o this month.
2025年4月20日 - SuperSocket团队自豪地宣布 SuperSocket 2.0 正式发布,这是这个高性能、可扩展的 .NET Socket 服务器应用框架的一个重要里程碑。在初始预览版发布后经过数年的开发,SuperSocket 2.0 代表了该框架的完全重构,专为现代 .NET 平台而打造。 https://www.oschina.net/news/345715/supersocket-2-0-released
启动正常,与客户端通信时出错。你把证书在certmgr里面打开看看?
这是你需要的吗? ``` var host = SuperSocketHostBuilder.Create() .UsePackageHandler(async (session, package) => { Console.WriteLine($"Received data from session {session.SessionID}: {package.Text}"); await Task.Yield(); }) .Build(); await host.RunAsync(); ```
Need test cases to cover this part.
建议升级到SuperSocket 2.0. 1.6版本不再维护了。
Did you use the same client test code for other TCP server implementation? I noticed it might be the problem of your client test code. CancellationToken should not be passed...
But I cannot reproduce this issue with this unit test: https://github.com/kerryjiang/SuperSocket/blob/934acd796c918aad519cb35c64286fc5123fee2a/test/SuperSocket.Tests/PerfTest.cs#L22-L58