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
I need to support many(thousands) http3 connections with huge output bandwidth(Gigs per seconds). Requests are small, replies are big.
I decided to read UDP socket in single listen thread, copy datagrams and peer/local addrs and forward to worker threads.
Each Worker has it's engine. I split clients based on hash or peer addr and port.
But what should I need to support changing path when peer addr becomes different ?
Thank in advance!
p.s
If my design may be simplified - I'm open to change it.
The text was updated successfully, but these errors were encountered:
Lsquic is great and thanks for sharing this work!
I need to support many(thousands) http3 connections with huge output bandwidth(Gigs per seconds). Requests are small, replies are big.
I decided to read UDP socket in single listen thread, copy datagrams and peer/local addrs and forward to worker threads.
Each Worker has it's engine. I split clients based on hash or peer addr and port.
But what should I need to support changing path when peer addr becomes different ?
Thank in advance!
p.s
If my design may be simplified - I'm open to change it.
The text was updated successfully, but these errors were encountered: