Skip to content

Commit

Permalink
TLS: Correct desc of enableSessionResumption
Browse files Browse the repository at this point in the history
  • Loading branch information
Fangliding authored Dec 19, 2024
1 parent 1dad6a9 commit f97224f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/config/transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@ CipherSuites 用于配置受支持的密码套件列表, 每个套件名称之

> `enableSessionResumption`: true | false
此参数的设置为 false 时, ClientHello 里没有 session_ticket 这个扩展。 通常来讲 go 语言程序的 ClientHello 里并没有用到这个扩展, 因此建议保持默认值。 默认值为 `false`
是否启用会话恢复,默认禁用,只有服务端和客户端都启用时候才会尝试协商会话恢复。

如果协商成功将可以不在握手过程中传输证书。稍微节省一点点握手时间(几乎可以忽略不计)

注意,这不是 TLS 0RTT, gotls 尚未支持此功能,这不会减少 TLS 握手的 RTT.

> `fingerprint` : string
Expand Down

0 comments on commit f97224f

Please sign in to comment.