mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename StreamDataBlockedFrame.DataLimit to MaximumStreamData
This commit is contained in:
parent
fa07078d81
commit
cc340b2887
10 changed files with 31 additions and 31 deletions
|
@ -171,12 +171,12 @@ func getFrames() []wire.Frame {
|
|||
MaximumData: protocol.MaxByteCount,
|
||||
},
|
||||
&wire.StreamDataBlockedFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
DataLimit: protocol.ByteCount(getRandomNumber()),
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
MaximumStreamData: protocol.ByteCount(getRandomNumber()),
|
||||
},
|
||||
&wire.StreamDataBlockedFrame{
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
DataLimit: protocol.MaxByteCount,
|
||||
StreamID: protocol.StreamID(getRandomNumber()),
|
||||
MaximumStreamData: protocol.MaxByteCount,
|
||||
},
|
||||
&wire.StreamsBlockedFrame{
|
||||
Type: protocol.StreamTypeUni,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue