don't use an idle timeout before the handshake has completed

This simplifies the timeout logic a bit. Before the handshake has
completed, the only timeout is the handshake timeout. After the
handshake has completed, the only timeout is the idle connection timeout.
This commit is contained in:
Marten Seemann 2017-08-29 15:47:56 +07:00
parent 71e82677e1
commit 5152019554
3 changed files with 15 additions and 23 deletions

View file

@ -102,7 +102,6 @@ type Config struct {
HandshakeTimeout time.Duration
// IdleTimeout is the maximum duration that may pass without any incoming network activity.
// This value only applies after the handshake has completed.
// Before that, the idle timeout is set to half the duration of the HandshakeTimeout.
// If the timeout is exceeded, the connection is closed.
// If this value is zero, the timeout is set to 30 seconds.
IdleTimeout time.Duration