mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix calculation of the time for the next keep alive
This commit is contained in:
parent
81d16a9903
commit
e098ccd2b3
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ func (s *session) nextKeepAliveTime() time.Time {
|
|||
if !s.config.KeepAlive || s.keepAlivePingSent || !s.firstAckElicitingPacketAfterIdleSentTime.IsZero() {
|
||||
return time.Time{}
|
||||
}
|
||||
return s.lastPacketReceivedTime.Add(s.keepAliveInterval / 2)
|
||||
return s.lastPacketReceivedTime.Add(s.keepAliveInterval)
|
||||
}
|
||||
|
||||
func (s *session) maybeResetTimer() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue