mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
add Frame.MaxLength and implement it for currently needed frames
This commit is contained in:
parent
93cea4f5de
commit
6be70bc29c
7 changed files with 70 additions and 1 deletions
|
@ -46,6 +46,11 @@ func ParseConnectionCloseFrame(r *bytes.Reader) (*ConnectionCloseFrame, error) {
|
|||
return frame, nil
|
||||
}
|
||||
|
||||
// MaxLength of a written frame
|
||||
func (f *ConnectionCloseFrame) MaxLength() int {
|
||||
return 1 + 4 + 2 + len(f.ReasonPhrase)
|
||||
}
|
||||
|
||||
// Write writes an CONNECTION_CLOSE frame.
|
||||
func (f *ConnectionCloseFrame) Write(b *bytes.Buffer) error {
|
||||
b.WriteByte(0x02)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue