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-bitswap
Commits
ec092bbd
Commit
ec092bbd
authored
May 10, 2016
by
Jeromy Johnson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2646 from ipfs/feat/bitswap-reuse-stream
allow bitswap to read multiple messages per stream
parents
aa8e4cd7
58d17505
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
network/ipfs_impl.go
network/ipfs_impl.go
+12
-10
No files found.
network/ipfs_impl.go
View file @
ec092bbd
...
...
@@ -150,6 +150,7 @@ func (bsnet *impl) handleNewStream(s inet.Stream) {
return
}
for
{
received
,
err
:=
bsmsg
.
FromNet
(
s
)
if
err
!=
nil
{
go
bsnet
.
receiver
.
ReceiveError
(
err
)
...
...
@@ -161,6 +162,7 @@ func (bsnet *impl) handleNewStream(s inet.Stream) {
ctx
:=
context
.
Background
()
log
.
Debugf
(
"bitswap net handleNewStream from %s"
,
s
.
Conn
()
.
RemotePeer
())
bsnet
.
receiver
.
ReceiveMessage
(
ctx
,
p
,
received
)
}
}
type
netNotifiee
impl
...
...
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