mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
make the keep alive interval configurable (#3444)
* Make keep alive configurable * Fix unit tests
This commit is contained in:
parent
619fa9fb44
commit
4c96cf75bf
8 changed files with 18 additions and 15 deletions
|
@ -2102,7 +2102,7 @@ var _ = Describe("Connection", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
conn.config.MaxIdleTimeout = 30 * time.Second
|
||||
conn.config.KeepAlive = true
|
||||
conn.config.KeepAlivePeriod = 15 * time.Second
|
||||
conn.receivedPacketHandler.ReceivedPacket(0, protocol.ECNNon, protocol.EncryptionHandshake, time.Now(), true)
|
||||
})
|
||||
|
||||
|
@ -2146,7 +2146,7 @@ var _ = Describe("Connection", func() {
|
|||
|
||||
It("doesn't send a PING packet if keep-alive is disabled", func() {
|
||||
setRemoteIdleTimeout(5 * time.Second)
|
||||
conn.config.KeepAlive = false
|
||||
conn.config.KeepAlivePeriod = 0
|
||||
conn.lastPacketReceivedTime = time.Now().Add(-time.Second * 5 / 2)
|
||||
runConn()
|
||||
// don't EXPECT() any calls to mconn.Write()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue