You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 14, 2026. It is now read-only.
I'm new to Netty, still learning it and trying to make a proxy supporting HTTP/2.
I'm using Http2Tiles as the target server (https://127.0.0.1:8443)
My client bootstrap (MyClient.clientBootStrap) wait infinitely when it's started from my proxy server (Programe.Main), https://192.168.1.98/
Debugging found it hungs at line 81. Console not printing "connected."
But if I change the startup object to MyClient in the project properties and run again, breakpoint hits at line 83 and console prints "connected."
Besides I rewrote it in java with Netty. -- https://github.com/Parsee1/NettyTest1
Client bootstrap connects fine even when connecting from server. Bam!
Did I do something wrong or is it a CSharp thing? Need some help over here :'(
I'm new to Netty, still learning it and trying to make a proxy supporting HTTP/2.
I'm using Http2Tiles as the target server (https://127.0.0.1:8443)

My client bootstrap (MyClient.clientBootStrap) wait infinitely when it's started from my proxy server (Programe.Main), https://192.168.1.98/
Debugging found it hungs at line 81. Console not printing "connected."
But if I change the startup object to MyClient in the project properties and run again, breakpoint hits at line 83 and console prints "connected."

Here's my repo https://github.com/Parsee1/SpanNettyTest1
Besides I rewrote it in java with Netty. -- https://github.com/Parsee1/NettyTest1

Client bootstrap connects fine even when connecting from server. Bam!
Did I do something wrong or is it a CSharp thing? Need some help over here :'(