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

if you want to use tcp with packet instead of stream,just follow this. ```c# public class Utility { public static void Int2Byte(int i,out byte b1,out byte b2) { b1 =...

This happens when code is written to repeatedly try to reconnect to a TCP server.

Hi, i have something wrong with WSS, for a while the tool can run normally, but after several hours it return an error to all connected user. Any help would...

Hi, Has anyone had any success with implementing SSL session resumption? Is it even possible to implement? Would appreciate any tips!

IDK how issues work I am new to git, sorry if I am using them wrong. Does the Client tell the Server already what ID it has when connecting or...

I'm trying to do a hot swap with NetCoreServer (Tcp classes). The idea is, new server program is compiled, it's loaded and the Sockets are handed off to a new...

I have an issue about some time EndPoint is wrong from ReceiveAsync function I fixed it by remove _receiving = false from ProcessReceiveFrom Can you review it ``` private void...

I write one react app client,use axios to request data : axios({ method: 'get', url: `http://localhost:8080/api/cache?key=test`, }).then(res => { const rdata = res.data console.log(rdata) }) use http server web api,but...

hi. i used library in visual basic and simple server. ` Dim server As New TcpServer(IPAddress.Any, 8283) server.Start()` clients can connect to server .but no event raised when connect or...