mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
introduce a quic.StreamError type and use it for stream cancelations
This commit is contained in:
parent
93cfef57ca
commit
90727cb41a
26 changed files with 128 additions and 114 deletions
|
@ -124,17 +124,17 @@ func getFrames() []wire.Frame {
|
|||
&wire.PingFrame{},
|
||||
&wire.ResetStreamFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.StreamErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.ByteCount(getRandomNumber()),
|
||||
},
|
||||
&wire.ResetStreamFrame{ // at maximum offset
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.StreamErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.MaxByteCount,
|
||||
},
|
||||
&wire.StopSendingFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.StreamErrorCode(getRandomNumber()),
|
||||
},
|
||||
&wire.CryptoFrame{
|
||||
Data: getRandomData(100),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue