Changed quic MaxIdleTimeout from 30s to 5min & HandshakeIdleTimeout to 8s

This commit is contained in:
aabbccgg 2022-11-23 15:13:25 +08:00 committed by yuhan6665
parent 3cf1b7e601
commit 0565589b8b
2 changed files with 4 additions and 0 deletions

View file

@ -142,6 +142,8 @@ func (s *clientConnections) openConnection(ctx context.Context, destAddr net.Add
quicConfig := &quic.Config{
ConnectionIDLength: 12,
KeepAlivePeriod: 0,
HandshakeIdleTimeout: time.Second * 8,
MaxIdleTimeout: time.Second * 300,
Tracer: qlog.NewTracer(func(_ logging.Perspective, connID []byte) io.WriteCloser {
return &QlogWriter{connID: connID}
}),