mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: magic number in StatusRequestV2Extension
- Fixed magic number `17` in `StatusRequestV2Extension` with pre-defined enum `extensionStatusRequestV2`.
This commit is contained in:
parent
776b61fa20
commit
522d8a4e09
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue