aiortc / aioquic

QUIC and HTTP/3 implementation in Python
BSD 3-Clause "New" or "Revised" License
1.66k stars 236 forks source link

[Design] Recommended pattern for a simple QUIC Connection with a read and write stream #493

Closed ReeceHumphreys closed 5 months ago

ReeceHumphreys commented 5 months ago

Hello,

I want to establish a QUIC connection and then open a read and write stream that I can use to interface with this connection. I see on https://github.com/aiortc/aioquic/issues/169 that using the create_stream api is not recommended anymore. What would be the proper way to go about this with the event api? Im not looking to use Http/3 or anything like that. Just a simple QUIC connection.

Thanks!