p2p/discover: improve timer handling for reply timeouts

pull/704/head
Felix Lange 10 years ago
parent b8aeb04f6f
commit 0217652d1b
  1. 5
      p2p/discover/udp.go

@ -267,11 +267,12 @@ func (t *udp) loop() {
defer timeout.Stop()
rearmTimeout := func() {
if len(pending) == 0 || nextDeadline == pending[0].deadline {
now := time.Now()
if len(pending) == 0 || now.Before(nextDeadline) {
return
}
nextDeadline = pending[0].deadline
timeout.Reset(nextDeadline.Sub(time.Now()))
timeout.Reset(nextDeadline.Sub(now))
}
for {

Loading…
Cancel
Save