aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/netutil/addrutil.go
Commit message (Collapse)AuthorAgeFilesLines
* all: update author list and licensesPéter Szilágyi2019-07-221-1/+1
|
* p2p: enforce connection retry limit on server side (#19684)Felix Lange2019-06-111-0/+33
The dialer limits itself to one attempt every 30s. Apply the same limit in Server and reject peers which try to connect too eagerly. The check against the limit happens right after accepting the connection. Further changes in this commit ensure we pass the Server logger down to Peer instances, discovery and dialState. Unit test logging now works in all Server tests.