mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 21:17:35 +03:00
fix: ech with helloGolang
This commit is contained in:
parent
f6f3c9867d
commit
c4f35cbdf6
2 changed files with 12 additions and 8 deletions
|
@ -262,14 +262,18 @@ func (m *clientHelloMsg) marshalMsgReorderOuterExts(echInner bool, outerExts []u
|
||||||
}
|
}
|
||||||
if len(m.supportedVersions) > 0 {
|
if len(m.supportedVersions) > 0 {
|
||||||
// RFC 8446, Section 4.2.1
|
// RFC 8446, Section 4.2.1
|
||||||
exts.AddUint16(extensionSupportedVersions)
|
if echInner && outerExts == nil { // uTLS
|
||||||
exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
|
echOuterExts = append(echOuterExts, extensionSupportedVersions)
|
||||||
exts.AddUint8LengthPrefixed(func(exts *cryptobyte.Builder) {
|
} else {
|
||||||
for _, vers := range m.supportedVersions {
|
exts.AddUint16(extensionSupportedVersions)
|
||||||
exts.AddUint16(vers)
|
exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
|
||||||
}
|
exts.AddUint8LengthPrefixed(func(exts *cryptobyte.Builder) {
|
||||||
|
for _, vers := range m.supportedVersions {
|
||||||
|
exts.AddUint16(vers)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
if len(m.cookie) > 0 {
|
if len(m.cookie) > 0 {
|
||||||
// RFC 8446, Section 4.2.2
|
// RFC 8446, Section 4.2.2
|
||||||
|
|
|
@ -483,7 +483,7 @@ func (c *UConn) clientHandshake(ctx context.Context) (err error) {
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
if ech != nil && c.clientHelloBuildStatus == BuildByGoTLS {
|
if ech != nil && c.clientHelloBuildStatus != BuildByUtls {
|
||||||
// Split hello into inner and outer
|
// Split hello into inner and outer
|
||||||
ech.innerHello = hello.clone()
|
ech.innerHello = hello.clone()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue