forked from cerc-io/plugeth
p2p: continue listening after temporary errors
This commit is contained in:
parent
7d5ff770e2
commit
edccc7ae34
@ -542,6 +542,10 @@ func (srv *Server) encHandshakeChecks(peers map[discover.NodeID]*Peer, c *conn)
|
||||
}
|
||||
}
|
||||
|
||||
type tempError interface {
|
||||
Temporary() bool
|
||||
}
|
||||
|
||||
// listenLoop runs in its own goroutine and accepts
|
||||
// inbound connections.
|
||||
func (srv *Server) listenLoop() {
|
||||
@ -561,16 +565,31 @@ func (srv *Server) listenLoop() {
|
||||
}
|
||||
|
||||
for {
|
||||
// Wait for a handshake slot before accepting.
|
||||
<-slots
|
||||
fd, err := srv.listener.Accept()
|
||||
if err != nil {
|
||||
|
||||
var (
|
||||
fd net.Conn
|
||||
err error
|
||||
)
|
||||
for {
|
||||
fd, err = srv.listener.Accept()
|
||||
if tempErr, ok := err.(tempError); ok && tempErr.Temporary() {
|
||||
glog.V(logger.Debug).Infof("Temporary read error: %v", err)
|
||||
continue
|
||||
} else if err != nil {
|
||||
glog.V(logger.Debug).Infof("Read error: %v", err)
|
||||
return
|
||||
}
|
||||
mfd := newMeteredConn(fd, true)
|
||||
break
|
||||
}
|
||||
fd = newMeteredConn(fd, true)
|
||||
glog.V(logger.Debug).Infof("Accepted conn %v\n", fd.RemoteAddr())
|
||||
|
||||
glog.V(logger.Debug).Infof("Accepted conn %v\n", mfd.RemoteAddr())
|
||||
// Spawn the handler. It will give the slot back when the connection
|
||||
// has been established.
|
||||
go func() {
|
||||
srv.setupConn(mfd, inboundConn, nil)
|
||||
srv.setupConn(fd, inboundConn, nil)
|
||||
slots <- struct{}{}
|
||||
}()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user