dht: Fix race contacting starting addrs in Announce
This commit is contained in:
parent
1d87653738
commit
b9a7cbfa14
|
@ -96,13 +96,15 @@ func (s *Server) Announce(infoHash string, port int, impliedPort bool) (*Announc
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
go func() {
|
go func() {
|
||||||
|
disc.mu.Lock()
|
||||||
|
defer disc.mu.Unlock()
|
||||||
for i, addr := range startAddrs {
|
for i, addr := range startAddrs {
|
||||||
if i != 0 {
|
if i != 0 {
|
||||||
time.Sleep(time.Millisecond)
|
|
||||||
}
|
|
||||||
disc.mu.Lock()
|
|
||||||
disc.contact(addr)
|
|
||||||
disc.mu.Unlock()
|
disc.mu.Unlock()
|
||||||
|
time.Sleep(time.Millisecond)
|
||||||
|
disc.mu.Lock()
|
||||||
|
}
|
||||||
|
disc.contact(addr)
|
||||||
}
|
}
|
||||||
disc.contactedStartAddrs = true
|
disc.contactedStartAddrs = true
|
||||||
// If we failed to contact any of the starting addrs, no transactions
|
// If we failed to contact any of the starting addrs, no transactions
|
||||||
|
|
Loading…
Reference in New Issue