mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Rename FakeGREASEExtension -> UtlsGREASEExtension
This commit is contained in:
parent
47f47cf66d
commit
e0edd7863b
2 changed files with 7 additions and 7 deletions
|
@ -455,12 +455,12 @@ const (
|
|||
)
|
||||
|
||||
// it is responsibility of user not to generate multiple grease extensions with same value
|
||||
type FakeGREASEExtension struct {
|
||||
type UtlsGREASEExtension struct {
|
||||
Value uint16
|
||||
Body []byte // in Chrome first grease has empty body, second grease has a single zero byte
|
||||
}
|
||||
|
||||
func (e *FakeGREASEExtension) writeToUConn(uc *UConn) error {
|
||||
func (e *UtlsGREASEExtension) writeToUConn(uc *UConn) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -475,11 +475,11 @@ func GetBoringGREASEValue(greaseSeed [ssl_grease_last_index]uint16, index int) u
|
|||
return ret
|
||||
}
|
||||
|
||||
func (e *FakeGREASEExtension) Len() int {
|
||||
func (e *UtlsGREASEExtension) Len() int {
|
||||
return 4 + len(e.Body)
|
||||
}
|
||||
|
||||
func (e *FakeGREASEExtension) Read(b []byte) (int, error) {
|
||||
func (e *UtlsGREASEExtension) Read(b []byte) (int, error) {
|
||||
if len(b) < e.Len() {
|
||||
return 0, io.ErrShortBuffer
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue