fix: magic number in StatusRequestV2Extension

- Fixed magic number `17` in `StatusRequestV2Extension` with pre-defined enum `extensionStatusRequestV2`.
This commit is contained in:
Gaukas Wang 2022-11-11 10:21:30 -07:00
parent 776b61fa20
commit 522d8a4e09
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -132,8 +132,8 @@ func (e *StatusRequestV2Extension) Read(b []byte) (int, error) {
return 0, io.ErrShortBuffer
}
// RFC 4366, section 3.6
b[0] = byte(17 >> 8)
b[1] = byte(17)
b[0] = byte(extensionStatusRequestV2 >> 8)
b[1] = byte(extensionStatusRequestV2)
b[2] = 0
b[3] = 9
b[4] = 0