1. 11 Feb, 2020 1 commit
  2. 06 Feb, 2020 2 commits
  3. 04 Feb, 2020 2 commits
  4. 15 Jan, 2020 2 commits
  5. 13 Jan, 2020 2 commits
  6. 17 Dec, 2019 1 commit
  7. 12 Dec, 2019 1 commit
  8. 11 Dec, 2019 2 commits
  9. 07 Dec, 2019 3 commits
  10. 06 Dec, 2019 7 commits
  11. 28 Oct, 2019 2 commits
  12. 25 Jul, 2019 2 commits
    • Steven Allen's avatar
      Merge pull request #92 from libp2p/fix/identify-2 · f4c9af19
      Steven Allen authored
      fix multiple TTL bugs
      f4c9af19
    • Steven Allen's avatar
      fix multiple TTL bugs · 2fb6d7a4
      Steven Allen authored
      The first fix independently extends the address expiration time and the address
      TTL:
      
      By example:
      
      * We have an address with a TTL of 4s that will expire in 1s.
      * We update it with a TTL of 3s.
      
      Before this change:
      
      * We end up with an address with a TTL of 3s that will expire in 3s.
      
      After this change:
      
      * We end up with an address with a TTL of 4s that will expire in 3s.
      
      ---
      
      The second fix prevents the in-memory addressbook from announcing existing
      addresses every time their TTLs get updated.
      
      ---
      
      The third fix correctly updates TTLs for existing addresses in the on-disk
      addressbook.
      
      This fixes https://github.com/libp2p/go-libp2p-identify/issues/2
      2fb6d7a4
  13. 10 Jul, 2019 1 commit
  14. 28 Jun, 2019 4 commits
  15. 21 Jun, 2019 1 commit
  16. 20 Jun, 2019 1 commit
  17. 19 Jun, 2019 1 commit
  18. 01 Jun, 2019 4 commits
  19. 31 May, 2019 1 commit
    • Steven Allen's avatar
      dep: switch to core (#80) · 0b5b3896
      Steven Allen authored
      * dep: switch to core
      
      Specifically, remove go-libp2p-{crypto,peer} deps.
      
      * catch a few more usages of deprecated packages.
      0b5b3896