mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
rename frame.MaxLength() to frame.MinLength()
This commit is contained in:
parent
8f221e6eab
commit
f204b088a6
11 changed files with 25 additions and 25 deletions
|
@ -89,17 +89,17 @@ func (f *StreamFrame) Write(b *bytes.Buffer, packetNumber protocol.PacketNumber,
|
|||
return nil
|
||||
}
|
||||
|
||||
// MaxLength of a written frame
|
||||
func (f *StreamFrame) MaxLength() int {
|
||||
// MinLength of a written frame
|
||||
func (f *StreamFrame) MinLength() int {
|
||||
return 1 + 4 + 8 + 2 + 1
|
||||
}
|
||||
|
||||
// MaybeSplitOffFrame removes the first n bytes and returns them as a separate frame. If n >= len(n), nil is returned and nothing is modified.
|
||||
func (f *StreamFrame) MaybeSplitOffFrame(n int) *StreamFrame {
|
||||
if n >= f.MaxLength()-1+len(f.Data) {
|
||||
if n >= f.MinLength()-1+len(f.Data) {
|
||||
return nil
|
||||
}
|
||||
n -= f.MaxLength() - 1
|
||||
n -= f.MinLength() - 1
|
||||
|
||||
defer func() {
|
||||
f.Data = f.Data[n:]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue