mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
mock MaxLength for RST_STREAM and STOP_WAITING
This commit is contained in:
parent
3b2d0efea5
commit
7a5f5f2306
2 changed files with 12 additions and 4 deletions
|
@ -2,7 +2,6 @@ package frames
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
"github.com/lucas-clemente/quic-go/utils"
|
||||
|
@ -17,7 +16,12 @@ type RstStreamFrame struct {
|
|||
|
||||
//Write writes a RST_STREAM frame
|
||||
func (f *RstStreamFrame) Write(b *bytes.Buffer) error {
|
||||
return errors.New("RstStreamFrame: Write not yet implemented")
|
||||
panic("RstStreamFrame: Write not yet implemented")
|
||||
}
|
||||
|
||||
// MaxLength of a written frame
|
||||
func (f *RstStreamFrame) MaxLength() int {
|
||||
panic("RstStreamFrame: Write not yet implemented")
|
||||
}
|
||||
|
||||
// ParseRstStreamFrame parses a RST_STREAM frame
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue