DotNetty icon indicating copy to clipboard operation
DotNetty copied to clipboard

DotNetty project – a port of netty, event-driven asynchronous network application framework

Results 125 DotNetty issues
Sort by recently updated
recently updated
newest added

when I use Channel WriteAndFlushAsync in dotnetty Service, This error occurred,I cut the picture below ![声明chanel](https://user-images.githubusercontent.com/36837735/100041792-07001880-2e45-11eb-86c1-579e97e46f3c.png) ![run service](https://user-images.githubusercontent.com/36837735/100041842-1da66f80-2e45-11eb-8dda-29574f9b46a5.png) ![run service2](https://user-images.githubusercontent.com/36837735/100041850-226b2380-2e45-11eb-801d-6c8ca2cd5ff9.png) ![dotnetty issure](https://user-images.githubusercontent.com/36837735/100041858-26974100-2e45-11eb-8ba4-daefcb48777d.png)

This is a port of HA Proxy from that found in the Netty repo. Changes made: - I attempted to convert names to match C# conventions, but there may be...

When we were using dotnetty, the application occupies too high CPU. Using windbg analysis, the thread stack is as follows `0:058> !runaway User Mode Time Thread Time 53:1554 4 days...

Is there any File Transfer examples ?

I have finished writing code for porting Http2 codec. my current progress is in https://github.com/cuteant/dotnetty-span-fork/tree/future/src/DotNetty.Codecs.Http2 Reference: https://github.com/maksimkim/DotNetty/tree/http2

It is recommended to modify the ICoderBuilder interface statement to support any codec.The current interface statement only supports fixed-length codecs, so I can't do it if I want to separate...

dotnetty use for unity 2019.2f in mobile, udp packet sending is work, but receieving is not work in my case... and i try see it SocketDatagramChannel.cs , and i found...

It seems that SSLStream isn’t available in Windows 10 build 14393. Is this a bug or bad behavior?

https://github.com/Azure/DotNetty/blob/dev/examples/Discard.Client/Program.cs#L56 Console.Readline(); is not blocking in docker https://forums.docker.com/t/c-console-readline-ends-in-infinite-loop/86754 a quick fix for that would be to use : however even if the result seems similar it doesn't do exactly the...

I want to use autofac,how to contoller MyHandler life time. ``` bootstrap.ChildHandler(new ActionChannelInitializer(channel => { IChannelPipeline pipeline = channel.Pipeline; pipeline.AddLast(new MyHandler(configuration));//i want to autofac contoller MyHandler life time })); ```...