Quic.NET
Quic.NET copied to clipboard
A .NET C# Implementation of QUIC protocol - Google's experimental transport layer.
**Recommendation** I may be wrong in this but it seems impossible to write additional data to an open stream ? Is it required within the spec to create a stream...
request compatible https://github.com/lucas-clemente/quic-go please!!!!
I can't send more than 64K of data, what should I do
I add async methods and examples for those who want to use it in async scenarios.
It would be great if this project was targeting .NET Core especially with 3.1 getting LTS for 3 years :)
Hello again, I'm not a 100% sure that I understand the meaning of "Bidirectional" But in your console client sample, I've added ``` // in the QuicNet.Tests.ConsoleClient.Program.Main context.OnDataReceived += Context_OnDataReceived;...
Hello! This seems like a very interesting project and I am trying to use it; however, I am not sure if this is your nuget [package](https://www.nuget.org/packages/QuicNet/1.0.0)? The username is different...
**What does that mean** Currently the Server acts as a continuously running entity on a single connection, awaiting packets. **What is the expectation** The connection should be handled exactly as...
I've changed my local version to: `public QuicStreamContext CreateStream(ulong streamId = 1, StreamType streamType = StreamType.ClientBidirectional);` in order to keep the compatibility.