-
Notifications
You must be signed in to change notification settings - Fork 37
/
rststream.go
53 lines (39 loc) · 942 Bytes
/
rststream.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package http2
import (
"github.com/dgrr/http2/http2utils"
)
const FrameResetStream FrameType = 0x3
var _ Frame = &RstStream{}
// RstStream https://tools.ietf.org/html/rfc7540#section-6.4
type RstStream struct {
code ErrorCode
}
func (rst *RstStream) Type() FrameType {
return FrameResetStream
}
func (rst *RstStream) Code() ErrorCode {
return rst.code
}
func (rst *RstStream) SetCode(code ErrorCode) {
rst.code = code
}
func (rst *RstStream) Reset() {
rst.code = 0
}
func (rst *RstStream) CopyTo(r *RstStream) {
r.code = rst.code
}
func (rst *RstStream) Error() error {
return rst.code
}
func (rst *RstStream) Deserialize(fr *FrameHeader) error {
if len(fr.payload) < 4 {
return ErrMissingBytes
}
rst.code = ErrorCode(http2utils.BytesToUint32(fr.payload))
return nil
}
func (rst *RstStream) Serialize(fr *FrameHeader) {
fr.payload = http2utils.AppendUint32Bytes(fr.payload[:0], uint32(rst.code))
fr.length = 4
}