fix: ech for hellogolang

This commit is contained in:
Mingye Chen 2025-02-03 04:11:39 -07:00
parent 3d730b9fb2
commit fa88bd57f1
5 changed files with 213 additions and 168 deletions

View file

@ -436,7 +436,8 @@ type PubClientHelloMsg struct {
PskBinders [][]byte
QuicTransportParameters []byte
cachedPrivateHello *clientHelloMsg // todo: further optimize to reduce clientHelloMsg construction
cachedPrivateHello *clientHelloMsg // todo: further optimize to reduce clientHelloMsg construction
encryptedClientHello []byte
}
func (chm *PubClientHelloMsg) getPrivatePtr() *clientHelloMsg {
@ -472,6 +473,7 @@ func (chm *PubClientHelloMsg) getPrivatePtr() *clientHelloMsg {
pskIdentities: PskIdentities(chm.PskIdentities).ToPrivate(),
pskBinders: chm.PskBinders,
quicTransportParameters: chm.QuicTransportParameters,
encryptedClientHello: chm.encryptedClientHello,
nextProtoNeg: chm.NextProtoNeg,
}
@ -523,6 +525,7 @@ func (chm *clientHelloMsg) getPublicPtr() *PubClientHelloMsg {
PskBinders: chm.pskBinders,
QuicTransportParameters: chm.quicTransportParameters,
cachedPrivateHello: chm,
encryptedClientHello: chm.encryptedClientHello,
}
}
}