aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/discover/udp_notwindows.go
Commit message (Collapse)AuthorAgeFilesLines
* p2p/discover, p2p/discv5: use netutil.IsTemporaryErrorFelix Lange2016-11-231-26/+0
|
* p2p/discover: fix Windows-specific issue for larger-than-buffer packetsFelix Lange2016-01-231-0/+26
On Windows, UDPConn.ReadFrom returns an error for packets larger than the receive buffer. The error is not marked temporary, causing our loop to exit when the first oversized packet arrived. The fix is to treat this particular error as temporary. Fixes: #1579, #2087 Updates: #2082