mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
expose the TransportError and the ApplicationError
This commit is contained in:
parent
f5238bf7b1
commit
42b61729bd
23 changed files with 126 additions and 106 deletions
|
@ -124,17 +124,17 @@ func getFrames() []wire.Frame {
|
|||
&wire.PingFrame{},
|
||||
&wire.ResetStreamFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.ByteCount(getRandomNumber()),
|
||||
},
|
||||
&wire.ResetStreamFrame{ // at maximum offset
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.MaxByteCount,
|
||||
},
|
||||
&wire.StopSendingFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
ErrorCode: quic.ApplicationErrorCode(getRandomNumber()),
|
||||
},
|
||||
&wire.CryptoFrame{
|
||||
Data: getRandomData(100),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue