diff --git a/pkg/nodeconfigs/defaults.go b/pkg/nodeconfigs/defaults.go index 6346911..931d255 100644 --- a/pkg/nodeconfigs/defaults.go +++ b/pkg/nodeconfigs/defaults.go @@ -9,6 +9,7 @@ const ( DefaultMaxThreadsMin = 1000 // 单节点最大线程数最小值 DefaultMaxThreadsMax = 100_000 // 单节点最大线程数最大值 - DefaultTCPMaxConnections = 100_000 // 单节点TCP最大连接数 - DefaultTCPLinger = 3 // 单节点TCP Linger值 + DefaultTCPMaxConnections = 100_000 // 单节点TCP最大连接数 + DefaultTCPLinger = 3 // 单节点TCP Linger值 + DefaultTLSHandshakeTimeout = 3 // TLS握手超时时间 )