mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
set the handshake timeout to twice the handshake idle timeout (#4063)
This commit is contained in:
parent
54b76ceb3e
commit
e1fcac3e46
6 changed files with 7 additions and 15 deletions
|
@ -6,7 +6,6 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/quic-go/quic-go/internal/protocol"
|
"github.com/quic-go/quic-go/internal/protocol"
|
||||||
"github.com/quic-go/quic-go/internal/utils"
|
|
||||||
"github.com/quic-go/quic-go/quicvarint"
|
"github.com/quic-go/quic-go/quicvarint"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -17,7 +16,7 @@ func (c *Config) Clone() *Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Config) handshakeTimeout() time.Duration {
|
func (c *Config) handshakeTimeout() time.Duration {
|
||||||
return utils.Max(protocol.DefaultHandshakeTimeout, 2*c.HandshakeIdleTimeout)
|
return 2 * c.HandshakeIdleTimeout
|
||||||
}
|
}
|
||||||
|
|
||||||
func validateConfig(config *Config) error {
|
func validateConfig(config *Config) error {
|
||||||
|
|
|
@ -115,12 +115,7 @@ var _ = Describe("Config", func() {
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
It("uses 10s handshake timeout for short handshake idle timeouts", func() {
|
It("uses twice the handshake idle timeouts for the handshake timeout", func() {
|
||||||
c := &Config{HandshakeIdleTimeout: time.Second}
|
|
||||||
Expect(c.handshakeTimeout()).To(Equal(protocol.DefaultHandshakeTimeout))
|
|
||||||
})
|
|
||||||
|
|
||||||
It("uses twice the handshake idle timeouts for the handshake timeout, for long handshake idle timeouts", func() {
|
|
||||||
c := &Config{HandshakeIdleTimeout: time.Second * 11 / 2}
|
c := &Config{HandshakeIdleTimeout: time.Second * 11 / 2}
|
||||||
Expect(c.handshakeTimeout()).To(Equal(11 * time.Second))
|
Expect(c.handshakeTimeout()).To(Equal(11 * time.Second))
|
||||||
})
|
})
|
||||||
|
|
|
@ -2201,7 +2201,7 @@ var _ = Describe("Connection", func() {
|
||||||
|
|
||||||
It("times out due to non-completed handshake", func() {
|
It("times out due to non-completed handshake", func() {
|
||||||
conn.handshakeComplete = false
|
conn.handshakeComplete = false
|
||||||
conn.creationTime = time.Now().Add(-protocol.DefaultHandshakeTimeout).Add(-time.Second)
|
conn.creationTime = time.Now().Add(-2 * protocol.DefaultHandshakeIdleTimeout).Add(-time.Second)
|
||||||
connRunner.EXPECT().Remove(gomock.Any()).Times(2)
|
connRunner.EXPECT().Remove(gomock.Any()).Times(2)
|
||||||
cryptoSetup.EXPECT().Close()
|
cryptoSetup.EXPECT().Close()
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
|
@ -2261,7 +2261,7 @@ var _ = Describe("Connection", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("closes the connection due to the idle timeout before handshake", func() {
|
It("closes the connection due to the idle timeout before handshake", func() {
|
||||||
conn.config.HandshakeIdleTimeout = 0
|
conn.config.HandshakeIdleTimeout = scaleDuration(25 * time.Millisecond)
|
||||||
packer.EXPECT().PackCoalescedPacket(false, gomock.Any(), conn.version).AnyTimes()
|
packer.EXPECT().PackCoalescedPacket(false, gomock.Any(), conn.version).AnyTimes()
|
||||||
connRunner.EXPECT().Remove(gomock.Any()).AnyTimes()
|
connRunner.EXPECT().Remove(gomock.Any()).AnyTimes()
|
||||||
cryptoSetup.EXPECT().Close()
|
cryptoSetup.EXPECT().Close()
|
||||||
|
|
|
@ -57,7 +57,7 @@ var _ = Describe("Timeout tests", func() {
|
||||||
context.Background(),
|
context.Background(),
|
||||||
"localhost:12345",
|
"localhost:12345",
|
||||||
getTLSClientConfig(),
|
getTLSClientConfig(),
|
||||||
getQuicConfig(&quic.Config{HandshakeIdleTimeout: 10 * time.Millisecond}),
|
getQuicConfig(&quic.Config{HandshakeIdleTimeout: scaleDuration(50 * time.Millisecond)}),
|
||||||
)
|
)
|
||||||
errChan <- err
|
errChan <- err
|
||||||
}()
|
}()
|
||||||
|
|
|
@ -250,7 +250,8 @@ type Config struct {
|
||||||
// If not set, it uses all versions available.
|
// If not set, it uses all versions available.
|
||||||
Versions []VersionNumber
|
Versions []VersionNumber
|
||||||
// HandshakeIdleTimeout is the idle timeout before completion of the handshake.
|
// HandshakeIdleTimeout is the idle timeout before completion of the handshake.
|
||||||
// Specifically, if we don't receive any packet from the peer within this time, the connection attempt is aborted.
|
// If we don't receive any packet from the peer within this time, the connection attempt is aborted.
|
||||||
|
// Additionally, if the handshake doesn't complete in twice this time, the connection attempt is also aborted.
|
||||||
// If this value is zero, the timeout is set to 5 seconds.
|
// If this value is zero, the timeout is set to 5 seconds.
|
||||||
HandshakeIdleTimeout time.Duration
|
HandshakeIdleTimeout time.Duration
|
||||||
// MaxIdleTimeout is the maximum duration that may pass without any incoming network activity.
|
// MaxIdleTimeout is the maximum duration that may pass without any incoming network activity.
|
||||||
|
|
|
@ -108,9 +108,6 @@ const DefaultIdleTimeout = 30 * time.Second
|
||||||
// DefaultHandshakeIdleTimeout is the default idle timeout used before handshake completion.
|
// DefaultHandshakeIdleTimeout is the default idle timeout used before handshake completion.
|
||||||
const DefaultHandshakeIdleTimeout = 5 * time.Second
|
const DefaultHandshakeIdleTimeout = 5 * time.Second
|
||||||
|
|
||||||
// DefaultHandshakeTimeout is the default timeout for a connection until the crypto handshake succeeds.
|
|
||||||
const DefaultHandshakeTimeout = 10 * time.Second
|
|
||||||
|
|
||||||
// MaxKeepAliveInterval is the maximum time until we send a packet to keep a connection alive.
|
// MaxKeepAliveInterval is the maximum time until we send a packet to keep a connection alive.
|
||||||
// It should be shorter than the time that NATs clear their mapping.
|
// It should be shorter than the time that NATs clear their mapping.
|
||||||
const MaxKeepAliveInterval = 20 * time.Second
|
const MaxKeepAliveInterval = 20 * time.Second
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue