mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename ResetStreamFrame.ByteOffset to FinalSize
This commit is contained in:
parent
cc340b2887
commit
865332015c
13 changed files with 50 additions and 50 deletions
|
@ -119,14 +119,14 @@ func getFrames() []wire.Frame {
|
|||
},
|
||||
&wire.PingFrame{},
|
||||
&wire.ResetStreamFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
ByteOffset: protocol.ByteCount(getRandomNumber()),
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.ByteCount(getRandomNumber()),
|
||||
},
|
||||
&wire.ResetStreamFrame{ // at maximum offset
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
ByteOffset: protocol.MaxByteCount,
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
ErrorCode: quic.ErrorCode(getRandomNumber()),
|
||||
FinalSize: protocol.MaxByteCount,
|
||||
},
|
||||
&wire.StopSendingFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue