NetCoreServer icon indicating copy to clipboard operation
NetCoreServer copied to clipboard

Ultra fast and low latency asynchronous socket server & client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution

Results 161 NetCoreServer issues
Sort by recently updated
recently updated
newest added

I have setup the OptionKeepAlive in both TcpServer and TcpClient, the client successfully connect to the server. However, when I turn off the router to test the keepalive feature, after...

I tried to connect and got an error message on the client side::"Client network socket disconnected before secure TLS connection was established". The server side also informed that Chat WebSocket...

public virtual long Receive(byte[] buffer, long offset, long size) { if (!IsConnected) return 0; if (size == 0) return 0; // Receive data from the server long received = Socket.Receive(buffer,...

修改前: ![image](https://github.com/chronoxor/NetCoreServer/assets/121167206/5452fb8f-207a-48a4-84bd-9e3f847c155f) 修改后: ![image](https://github.com/chronoxor/NetCoreServer/assets/121167206/b830b2f9-9c02-4b8f-b187-17c4f244f9d3)

Hi. I don't get first line in your reserve method? is this a type or I miss something? Debug.Assert((capacity >= 0), "Invalid reserve capacity!"); ``` /// /// Reserve the buffer...

Hello, I made a test program which simply spawns an UDP server and compares the time in milliseconds between what's contained in the payload of the received frames and the...

This fixes an issue that is first seen in .NET 8 where the socket address is now internally cached inside the event args between calls (https://github.com/dotnet/runtime/blob/v8.0.1/src/libraries/System.Net.Sockets/src/System/Net/Sockets/Socket.cs#L3098-L3107). Without this fix, all...

We've noticed that your package on NuGet.org is missing a README file. ## Why READMEs are Important Our customer research indicates that one of the top problems that package consumers...

Hello I used your project to create a socks5 server, it's a bit difficult to access your project structure but everything is fine. During long-term running on the server, I...

There is currently the following assertion in `Stop()`: `Debug.Assert(IsStarted, "UDP server is not started!");`, however it should be valid to dispose the object without the server being started.