good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 19, 2015
  2. Aug 12, 2015
  3. Aug 11, 2015
    • Felix Lange's avatar
      p2p/discover: fix UDP reply packet timeout handling · 590c99a9
      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.
      590c99a9
    • Felix Lange's avatar
      p2p/discover: unlock the table during ping replacement · 01ed3fa1
      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.
      01ed3fa1
  4. Aug 06, 2015
  5. Aug 04, 2015
  6. Jul 23, 2015
  7. Jul 22, 2015
  8. Jul 14, 2015
  9. Jul 07, 2015
  10. Jun 29, 2015
  11. Jun 26, 2015
  12. Jun 24, 2015
  13. Jun 21, 2015
    • Felix Lange's avatar
      p2p: throttle all discovery lookups · 6fb810ad
      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
      6fb810ad
  14. Jun 15, 2015
  15. Jun 10, 2015
  16. Jun 09, 2015
  17. Jun 04, 2015
  18. May 27, 2015
  19. May 26, 2015
  20. May 24, 2015
    • Felix Lange's avatar
      p2p: decrease frameReadTimeout to 30s · 9e1fd70b
      Felix Lange authored
      This detects hanging connections sooner. We send a ping every 15s and
      other implementation have similar limits.
      9e1fd70b
    • Felix Lange's avatar
      p2p: new dialer, peer management without locks · 1440f9a3
      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.
      1440f9a3
Loading