1. 10 Nov, 2020 1 commit
  2. 24 Sep, 2020 1 commit
    • Tomasz Zdybał's avatar
      Add WireTap interface (#444) · bc3df6bd
      Tomasz Zdybał authored
      * Add WireTap interface
      
      WireTap interface can be used to access all messages send and received
      by Bitswap. This can be used to implement advanced statistics/analysis
      logic, which is beyond scope of Bitswap, but can be implemented as IPFS
      plugin.
      
      Some examples of potential applications:
       - per CID bandwidth tracker (see: https://gitcoin.co/issue/PinataCloud/apollo/2/100023631)
       - detailed per peer stats
       - intrusion detection system (IDS) implementation
      
      * Add test for WireTap
      bc3df6bd
  3. 03 Sep, 2020 1 commit
    • Paul Wolneykien's avatar
      Added `WithScoreLedger` Bitswap option (#430) · fd213932
      Paul Wolneykien authored
      * Separate decision engine ledger on two parts: score and the wantlist
      
      This is the first step to make external decision logic (tagging
      peers with score values) possible.
      
      The wantlist still resides in the original `ledger` struct while
      sent/received byte accounting and scores are extracted to the new
      `scoreledger` struct managed by the original `scoreWorker()` logic.
      The accounting is integrated into the `Engine` via `ScoreLedger`
      interface making it possible to replace the original `scoreWorker()`
      with some other logic. The interface, however, doesn't allow a
      score logic to directly touch peer tags: the logic may decide about
      score values while tagging itself is still under control of Engine.
      
      Note: with this commit it's yet not possible to replace the original
      score logic because there is no public methods for that.
      
      * Added "WithScoreLedger" Bitswap option
      
      New `WithScoreLedger(decision.ScoreLedger)` option in the `bitswap`
      package is the way to connect a custom `ScoreLedger` implementation
      to the decision engine. The `Engine` now has the corresponding
      `UseScoreLedger(ScoreLedger)` method.
      
      The `ScoreLedger` and `ScorePeerFunc` types are exposed from the
      internal `decision` package to the public one.
      
      Because its options are processed by the `Bitswap` after construction
      of its parts but before starting of the engine, the default
      `scoreLedger` initialization is moved from `newEngine()` to
      `StartWorkers()`.
      
      New `TestWithScoreLedger` test is added. The test checks for start and
      stop of the testing score ledger implementation that is specified via
      `WithScoreLedger` option.
      
      * Combine score ledger start with initialization of the score function
      
      Having a separate `Init(ScoreFunc)` method seems redundant (thx
      @dirkmc for pointing about that). As a bonus, the two-step ledger
      starting process is now enclosed in the `startScoreLedger()` function.
      
      * Let's call Stop() to stop a ScoreLedger
      
      The `Close()` method was there to stop the ledger. Let call it
      `Stop()` now.
      
      * Get return of the blank Receipt out of conditional block
      
      Explicitly form it as the final resort.
      Co-authored-by: default avatarPaul Wolneykien <manowar@altlinux.org>
      fd213932
  4. 11 Mar, 2020 1 commit
  5. 06 Mar, 2020 2 commits
  6. 12 Feb, 2020 1 commit
  7. 30 Jan, 2020 2 commits
    • Steven Allen's avatar
      feat: move internals to an internal package · bbf65296
      Steven Allen authored
      This makes reading the docs much easier as it's clear what's "private" and
      what's not.
      
      fixes #238
      bbf65296
    • dirkmc's avatar
      feat: bitswap protocol extensions · b3a47bcf
      dirkmc authored
      This commit extends the bitswap protocol with two additional wantlist properties:
      
      * WANT_HAVE/HAVE: Instead of asking for a block, a node can specify that they
        want to know if any peers "have" the block.
      * WANT_HAVE_NOT/HAVE_NOT: Instead of waiting for a timeout, a node can explicitly
        request to be told immediately if their peers don't currently have the given
        block.
      
      Additionally, nodes now tell their peers how much data they have queued to send
      them when sending messages. This allows peers to better distribute requests,
      keeping all peers busy but not overloaded.
      
      Changes in this PR are described in: https://github.com/ipfs/go-bitswap/issues/186
      b3a47bcf
  8. 20 Aug, 2019 1 commit
  9. 14 Aug, 2019 1 commit
  10. 13 Aug, 2019 1 commit
  11. 04 Jun, 2019 1 commit
  12. 01 Jun, 2019 1 commit
  13. 20 May, 2019 2 commits
  14. 10 May, 2019 2 commits
  15. 30 Apr, 2019 1 commit
  16. 26 Apr, 2019 1 commit
  17. 20 Feb, 2019 1 commit
  18. 05 Feb, 2019 1 commit
  19. 11 Dec, 2018 1 commit
    • hannahhoward's avatar
      refactor(WantManager): extract PeerManager · 693085c9
      hannahhoward authored
      Seperates the functions of tracking wants from tracking peers
      Unit tests for both peer manager and want manager
      Refactor internals of both to address synchonization issues discovered
      in tests
      693085c9
  20. 13 Nov, 2018 1 commit
  21. 12 Sep, 2018 1 commit
  22. 27 Jul, 2018 1 commit
  23. 23 Jul, 2018 1 commit
  24. 16 Jul, 2018 1 commit
  25. 27 Jun, 2018 1 commit
    • Steven Allen's avatar
      gx update · b468efbc
      Steven Allen authored
      Updates:
      
      * go-kad-dht: Query performance improvements, DHT client fixes, validates
        records on *local* put.
      * go-libp2p-swarm/go-libp2p-transport: Timeout improvements.
      * go-multiaddr-net: Exposes useful Conn methods (CloseWrite, CloseRead, etc.)
      * go-log: fixes possible panic when enabling/disabling events.
      * go-multiaddr: fixes possible panic when stringifying malformed multiaddrs,
        adds support for consuming /p2p/ multiaddrs.
      
      fixes #5113
      unblocks #4895
      
      License: MIT
      Signed-off-by: default avatarSteven Allen <steven@stebalien.com>
      b468efbc
  26. 26 Jun, 2018 1 commit
  27. 09 Jun, 2018 1 commit
  28. 06 Jun, 2018 1 commit
  29. 04 Jun, 2018 1 commit
  30. 01 Jun, 2018 1 commit
  31. 19 Apr, 2018 1 commit
  32. 26 Mar, 2018 2 commits
  33. 15 Feb, 2018 1 commit
    • Hector Sanjuan's avatar
      Extract blocks/blockstore package to go-ipfs-blockstore · 93f5fecd
      Hector Sanjuan authored
      This extracts the blocks/blockstore package and renames the
      blocks/blockstore/util package to /blocks/blockstoreutil
      (because util depends on Pin and I don't plan to extract
      Pin and its depedencies).
      
      The history of blocks/blockstore has been preserved. It has
      been gx'ed and imported. Imports have been rewritten accordingly
      and re-ordered.
      
      License: MIT
      Signed-off-by: default avatarHector Sanjuan <hector@protocol.ai>
      93f5fecd
  34. 14 Feb, 2018 1 commit
  35. 12 Feb, 2018 1 commit