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
a649991f
Commit
a649991f
authored
Jul 18, 2017
by
Steven Allen
Committed by
GitHub
Jul 18, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #67 from hermanjunge/master
Add queried peer ID to query event
parents
b62d46c2
e55dcbb2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
.travis.yml
.travis.yml
+1
-1
routing.go
routing.go
+2
-1
No files found.
.travis.yml
View file @
a649991f
...
...
@@ -7,7 +7,7 @@ env:
-
IPFS_REUSEPORT=false
go
:
-
1.
7
-
1.
8
install
:
true
...
...
routing.go
View file @
a649991f
...
...
@@ -444,7 +444,7 @@ func (dht *IpfsDHT) FindPeer(ctx context.Context, id peer.ID) (pstore.PeerInfo,
closer
:=
pmes
.
GetCloserPeers
()
clpeerInfos
:=
pb
.
PBPeersToPeerInfos
(
closer
)
// see i
t
we got the peer here
// see i
f
we got the peer here
for
_
,
npi
:=
range
clpeerInfos
{
if
npi
.
ID
==
id
{
return
&
dhtQueryResult
{
...
...
@@ -456,6 +456,7 @@ func (dht *IpfsDHT) FindPeer(ctx context.Context, id peer.ID) (pstore.PeerInfo,
notif
.
PublishQueryEvent
(
parent
,
&
notif
.
QueryEvent
{
Type
:
notif
.
PeerResponse
,
ID
:
p
,
Responses
:
clpeerInfos
,
})
...
...
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