add Frame.MaxLength and implement it for currently needed frames

This commit is contained in:
Lucas Clemente 2016-04-20 15:06:10 +02:00
parent 93cea4f5de
commit 6be70bc29c
7 changed files with 70 additions and 1 deletions

View file

@ -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)