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
p2p
go-p2p-kad-dht
Commits
29c36b20
Commit
29c36b20
authored
Jul 01, 2016
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update go-datastore changes 0.1.2
License: MIT Signed-off-by:
Jeromy
<
why@ipfs.io
>
parent
7c91e7bd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
dht.go
dht.go
+1
-1
dht_test.go
dht_test.go
+2
-2
ext_test.go
ext_test.go
+2
-2
handlers.go
handlers.go
+1
-1
providers/providers.go
providers/providers.go
+2
-2
providers/providers_test.go
providers/providers_test.go
+1
-1
No files found.
dht.go
View file @
29c36b20
...
...
@@ -26,7 +26,7 @@ import (
host
"gx/ipfs/QmZ8bCZpMWDbFSh6h2zgTYwrhnjrGM5c9WCzw72SU8p63b/go-libp2p/p2p/host"
protocol
"gx/ipfs/QmZ8bCZpMWDbFSh6h2zgTYwrhnjrGM5c9WCzw72SU8p63b/go-libp2p/p2p/protocol"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
)
var
log
=
logging
.
Logger
(
"dht"
)
...
...
dht_test.go
View file @
29c36b20
...
...
@@ -14,8 +14,8 @@ import (
record
"github.com/ipfs/go-ipfs/routing/record"
ci
"github.com/ipfs/go-ipfs/thirdparty/testutil/ci"
travisci
"github.com/ipfs/go-ipfs/thirdparty/testutil/ci/travis"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
dssync
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore/sync"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
dssync
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore/sync"
pstore
"gx/ipfs/QmQdnfvZQuhdT93LNc5bos52wAmdr3G2p6G8teLJMEN32P/go-libp2p-peerstore"
peer
"gx/ipfs/QmRBqJF7hb8ZSpRcMwUt8hNhydWcxGEhtk81HKq6oUwKvs/go-libp2p-peer"
...
...
ext_test.go
View file @
29c36b20
...
...
@@ -10,8 +10,8 @@ import (
routing
"github.com/ipfs/go-ipfs/routing"
pb
"github.com/ipfs/go-ipfs/routing/dht/pb"
record
"github.com/ipfs/go-ipfs/routing/record"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
dssync
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore/sync"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
dssync
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore/sync"
pstore
"gx/ipfs/QmQdnfvZQuhdT93LNc5bos52wAmdr3G2p6G8teLJMEN32P/go-libp2p-peerstore"
ggio
"gx/ipfs/QmZ4Qi3GaRbjcx28Sme5eMH7RQjGkt8wHxt2a65oLaeFEV/gogo-protobuf/io"
...
...
handlers.go
View file @
29c36b20
...
...
@@ -8,7 +8,7 @@ import (
key
"github.com/ipfs/go-ipfs/blocks/key"
pb
"github.com/ipfs/go-ipfs/routing/dht/pb"
lgbl
"github.com/ipfs/go-ipfs/thirdparty/loggables"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
pstore
"gx/ipfs/QmQdnfvZQuhdT93LNc5bos52wAmdr3G2p6G8teLJMEN32P/go-libp2p-peerstore"
peer
"gx/ipfs/QmRBqJF7hb8ZSpRcMwUt8hNhydWcxGEhtk81HKq6oUwKvs/go-libp2p-peer"
...
...
providers/providers.go
View file @
29c36b20
...
...
@@ -12,8 +12,8 @@ import (
peer
"gx/ipfs/QmRBqJF7hb8ZSpRcMwUt8hNhydWcxGEhtk81HKq6oUwKvs/go-libp2p-peer"
lru
"gx/ipfs/QmVYxfoJQiZijTgPNHCHgHELvQpbsJNTg6Crmc3dQkj3yy/golang-lru"
base32
"gx/ipfs/Qmb1DA2A9LS2wR4FFweB4uEDomFsdmnw1VLawLE1yQzudj/base32"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
dsq
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore/query"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
dsq
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore/query"
key
"github.com/ipfs/go-ipfs/blocks/key"
...
...
providers/providers_test.go
View file @
29c36b20
...
...
@@ -7,7 +7,7 @@ import (
key
"github.com/ipfs/go-ipfs/blocks/key"
peer
"gx/ipfs/QmRBqJF7hb8ZSpRcMwUt8hNhydWcxGEhtk81HKq6oUwKvs/go-libp2p-peer"
ds
"gx/ipfs/Qm
bCg24DeRKaRDLHbzzSVj7xndmWCPanBLkAM7Lx2nbrFs
/go-datastore"
ds
"gx/ipfs/Qm
fQzVugPq1w5shWRcLWSeiHF4a2meBX7yVD8Vw7GWJM9o
/go-datastore"
context
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
)
...
...
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