Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
22539cf6
Commit
22539cf6
authored
10 years ago
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(bitswap:strategy) move key set
parent
b8133a48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
bitswap/bitswap.go
bitswap/bitswap.go
+1
-4
bitswap/strategy/ledger.go
bitswap/strategy/ledger.go
+5
-1
No files found.
bitswap/bitswap.go
View file @
22539cf6
...
...
@@ -24,10 +24,6 @@ import (
// advertisements. WantLists are sorted in terms of priority.
const
PartnerWantListMax
=
10
// KeySet is just a convenient alias for maps of keys, where we only care
// access/lookups.
type
KeySet
map
[
u
.
Key
]
struct
{}
// bitswap instances implement the bitswap protocol.
type
bitswap
struct
{
// peer is the identity of this (local) node.
...
...
@@ -59,6 +55,7 @@ func NewSession(parent context.Context, s bsnet.NetworkService, p *peer.Peer, d
bs
:=
&
bitswap
{
blockstore
:
blockstore
.
NewBlockstore
(
d
),
notifications
:
notifications
.
New
(),
strategist
:
strategy
.
New
(
d
),
peer
:
p
,
routing
:
directory
,
sender
:
bsnet
.
NewNetworkAdapter
(
s
,
&
receiver
),
...
...
This diff is collapsed.
Click to expand it.
bitswap/strategy/ledger.go
View file @
22539cf6
...
...
@@ -8,6 +8,10 @@ import (
u
"github.com/jbenet/go-ipfs/util"
)
// keySet is just a convenient alias for maps of keys, where we only care
// access/lookups.
type
keySet
map
[
u
.
Key
]
struct
{}
// ledger stores the data exchange relationship between two peers.
type
ledger
struct
{
lock
sync
.
RWMutex
...
...
@@ -28,7 +32,7 @@ type ledger struct {
exchangeCount
uint64
// wantList is a (bounded, small) set of keys that Partner desires.
wantList
K
eySet
wantList
k
eySet
Strategy
strategyFunc
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment