Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
go-libp2p
Commits
8bcd3e59
Commit
8bcd3e59
authored
Apr 27, 2015
by
Henry
Browse files
only warn about io.EOF from mux.ReaderHeaders (fixes #1143)
parent
906944b2
Changes
1
Show whitespace changes
Inline
Side-by-side
host/basic/basic_host.go
View file @
8bcd3e59
package
basichost
import
(
"io"
ma
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
goprocess
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/goprocess"
context
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
...
...
@@ -95,7 +97,11 @@ func (h *BasicHost) newConnHandler(c inet.Conn) {
func
(
h
*
BasicHost
)
newStreamHandler
(
s
inet
.
Stream
)
{
protoID
,
handle
,
err
:=
h
.
Mux
()
.
ReadHeader
(
s
)
if
err
!=
nil
{
log
.
Error
(
"protocol mux failed: %s"
,
err
)
if
err
==
io
.
EOF
{
log
.
Warningf
(
"protocol EOF: %s"
,
s
.
Conn
()
.
RemotePeer
())
}
else
{
log
.
Errorf
(
"protocol mux failed: %s"
,
err
)
}
return
}
...
...
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