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
|
@ -37,7 +37,7 @@ func initParrots() {
|
|||
},
|
||||
CompressionMethods: []byte{compressionNone},
|
||||
Extensions: []TLSExtension{
|
||||
&FakeGREASEExtension{},
|
||||
&UtlsGREASEExtension{},
|
||||
&RenegotiationInfoExtension{renegotiation: RenegotiateOnceAsClient},
|
||||
&SNIExtension{},
|
||||
&UtlsExtendedMasterSecretExtension{},
|
||||
|
@ -60,7 +60,7 @@ func initParrots() {
|
|||
&SupportedPointsExtension{SupportedPoints: []byte{pointFormatUncompressed}},
|
||||
&SupportedCurvesExtension{[]CurveID{CurveID(GREASE_PLACEHOLDER),
|
||||
X25519, CurveP256, CurveP384}},
|
||||
&FakeGREASEExtension{},
|
||||
&UtlsGREASEExtension{},
|
||||
&UtlsPaddingExtension{GetPaddingLen: BoringPaddingStyle},
|
||||
},
|
||||
GetSessionID: sha256.Sum256,
|
||||
|
@ -209,7 +209,7 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
|
|||
if ext.ServerName == "" {
|
||||
ext.ServerName = uconn.config.ServerName
|
||||
}
|
||||
case *FakeGREASEExtension:
|
||||
case *UtlsGREASEExtension:
|
||||
switch grease_extensions_seen {
|
||||
case 0:
|
||||
ext.Value = GetBoringGREASEValue(uconn.greaseSeed, ssl_grease_extension1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue