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

Hi @chronoxor, this is a great library written in Core 3.0, thank you for sharing. I turned TCP Chat server into a TCP server. I like to gather client information...

I am using the chat client example. I am using a static ip address like 127.0.0.1. I would to use something like tcp.example.com and port 8888. I am getting an...

I am currently using this library to create a UDP listener for a GPS tracking system (multiple vehicles as clients connecting to a single instance of my listener). I am...

With following code on a TCP client side: ```csharp int bufferSize = 1024 * 1024; var buffer = Enumerable.Repeat((byte)'.', bufferSize).ToArray(); int count = 3 * 1024; for (int i =...

When ssl session was created, It will have 3 buffer, which size are 65k. Where should I change the default size? Thank you.

Proof: https://cdn.discordapp.com/attachments/328508701763698698/535807104565379073/unknown.png sometimes it does not split the packet, I used the ChatSession example and modified it a little. I kept the files and code so I can provide it...

Hi there, first of all, thanks for NetCoreServer, great product. What is your opinion on how to host a "NetCoreServer" on Azure? AppService? How to put multiple instances of the...

Can we process memory like dotnetty.buffers?

Couldn't see anything in the documentation about this. Is it possible to run a HTTPS server and WSS on the same port but under different directories, or would you need...

Wondering if there's a way to have this target both as many libraries do. We're in the process of transitioning to Core but would like to use this in our...