mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename MaxDataFrame.ByteOffset to MaximumData
This commit is contained in:
parent
00f8028e52
commit
f4519cfd32
16 changed files with 32 additions and 32 deletions
|
@ -38,7 +38,7 @@ var _ = Describe("Framer", func() {
|
|||
|
||||
Context("handling control frames", func() {
|
||||
It("adds control frames", func() {
|
||||
mdf := &wire.MaxDataFrame{ByteOffset: 0x42}
|
||||
mdf := &wire.MaxDataFrame{MaximumData: 0x42}
|
||||
msf := &wire.MaxStreamsFrame{MaxStreamNum: 0x1337}
|
||||
framer.QueueControlFrame(mdf)
|
||||
framer.QueueControlFrame(msf)
|
||||
|
@ -52,7 +52,7 @@ var _ = Describe("Framer", func() {
|
|||
|
||||
It("says if it has data", func() {
|
||||
Expect(framer.HasData()).To(BeFalse())
|
||||
f := &wire.MaxDataFrame{ByteOffset: 0x42}
|
||||
f := &wire.MaxDataFrame{MaximumData: 0x42}
|
||||
framer.QueueControlFrame(f)
|
||||
Expect(framer.HasData()).To(BeTrue())
|
||||
frames, _ := framer.AppendControlFrames(nil, 1000)
|
||||
|
@ -62,7 +62,7 @@ var _ = Describe("Framer", func() {
|
|||
|
||||
It("appends to the slice given", func() {
|
||||
ping := &wire.PingFrame{}
|
||||
mdf := &wire.MaxDataFrame{ByteOffset: 0x42}
|
||||
mdf := &wire.MaxDataFrame{MaximumData: 0x42}
|
||||
framer.QueueControlFrame(mdf)
|
||||
frames, length := framer.AppendControlFrames([]ackhandler.Frame{{Frame: ping}}, 1000)
|
||||
Expect(frames).To(HaveLen(2))
|
||||
|
@ -137,7 +137,7 @@ var _ = Describe("Framer", func() {
|
|||
}
|
||||
stream1.EXPECT().popStreamFrame(gomock.Any()).Return(&ackhandler.Frame{Frame: f}, false)
|
||||
framer.AddActiveStream(id1)
|
||||
mdf := &wire.MaxDataFrame{ByteOffset: 1337}
|
||||
mdf := &wire.MaxDataFrame{MaximumData: 1337}
|
||||
frames := []ackhandler.Frame{{Frame: mdf}}
|
||||
fs, length := framer.AppendStreamFrames(frames, 1000)
|
||||
Expect(fs).To(HaveLen(2))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue