docs: add comments

This commit is contained in:
Mingye Chen 2025-03-27 16:30:09 -06:00
parent 6f87c69b6a
commit 3e541b6b3e
3 changed files with 12 additions and 12 deletions

View file

@ -580,6 +580,8 @@ func (c *UConn) clientHandshake(ctx context.Context) (err error) {
}
func (c *UConn) echTranscriptMsg(outer *clientHelloMsg, echCtx *echClientContext) (err error) {
// Recreate the inner ClientHello from its compressed form using server's decodeInnerClientHello function.
// See https://github.com/refraction-networking/utls/blob/e430876b1d82fdf582efc57f3992d448e7ab3d8a/ech.go#L276-L283
encodedInner, err := encodeInnerClientHelloReorderOuterExts(echCtx.innerHello, int(echCtx.config.MaxNameLength), c.extensionsList())
if err != nil {
return err