- Aug 19, 2015
-
-
Jeffrey Wilcke authored
This reverts commit 5c949d3b.
-
Felix Lange authored
PR #1621 changed Table locking so the mutex is not held while a contested node is being pinged. If multiple nodes ping the local node during this time window, multiple ping packets will be sent to the contested node. The changes in this commit prevent multiple packets by tracking whether the node is being replaced.
-
Felix Lange authored
-
Felix Lange authored
Might solve #1579
-
- Aug 12, 2015
-
-
Felix Lange authored
We had the wrong value (12) since forever.
-
- Aug 11, 2015
-
-
Felix Lange authored
If the timeout fired (even just nanoseconds) before the deadline of the next pending reply, the timer was not rescheduled. The timer would've been rescheduled anyway once the next packet was sent, but there were cases where no next packet could ever be sent due to the locking issue fixed in the previous commit. As timing-related bugs go, this issue had been present for a long time and I could never reproduce it. The test added in this commit did reproduce the issue on about one out of 15 runs.
-
Felix Lange authored
Table.mutex was being held while waiting for a reply packet, which effectively made many parts of the whole stack block on that packet, including the net_peerCount RPC call.
-
- Aug 06, 2015
-
-
Felix Lange authored
-
Felix Lange authored
Not closing the table used to be fine, but now the table has a database.
-
- Aug 04, 2015
-
-
Felix Lange authored
Package fdtrack logs statistics about open file descriptors. This should help identify the source of #1549.
-
- Jul 23, 2015
-
-
Felix Lange authored
I forgot to update one instance of "go-ethereum" in commit 3f047be5.
-
- Jul 22, 2015
-
-
Felix Lange authored
All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library".
-
- Jul 14, 2015
-
-
Ethan Buchman authored
-
- Jul 07, 2015
-
-
Felix Lange authored
-
Felix Lange authored
-
- Jun 29, 2015
-
-
Péter Szilágyi authored
-
- Jun 26, 2015
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Jun 24, 2015
-
-
Péter Szilágyi authored
-
- Jun 21, 2015
-
-
Felix Lange authored
Lookup calls would spin out of control when network connectivity was lost. The throttling that was in place only took effect when the table returned zero results, which doesn't happen very often. The new throttling should not have a negative impact when the host is online. Lookups against the network take some time and dials for all results must complete or hit the cache before a new one is started. This usually takes longer than four seconds, leaving online lookups unaffected. Fixes #1296
-
- Jun 15, 2015
-
-
Felix Lange authored
-
Felix Lange authored
As of this commit, we no longer rely on the protocol handler to report write errors in a timely fashion. When a write fails, shutdown is initiated immediately and no new writes can start. This will also prevent new writes from starting after Server.Stop has been called.
-
- Jun 10, 2015
-
-
Felix Lange authored
rand.Source isn't safe for concurrent use.
-
Felix Lange authored
-
- Jun 09, 2015
-
-
Péter Szilágyi authored
-
Felix Lange authored
The previous value of 5 seconds causes timeouts for legitimate messages if large messages are sent.
-
Péter Szilágyi authored
-
- Jun 04, 2015
-
-
Felix Lange authored
-
- May 27, 2015
-
-
Felix Lange authored
-
- May 26, 2015
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- May 24, 2015
-
-
Felix Lange authored
This detects hanging connections sooner. We send a ping every 15s and other implementation have similar limits.
-
Felix Lange authored
The most visible change is event-based dialing, which should be an improvement over the timer-based system that we have at the moment. The dialer gets a chance to compute new tasks whenever peers change or dials complete. This is better than checking peers on a timer because dials happen faster. The dialer can now make more precise decisions about whom to dial based on the peer set and we can test those decisions without actually opening any sockets. Peer management is easier to test because the tests can inject connections at checkpoints (after enc handshake, after protocol handshake). Most of the handshake stuff is now part of the RLPx code. It could be exported or move to its own package because it is no longer entangled with Server logic.
-