mirror of https://github.com/v2ray/v2ray-core
fix error reporting
parent
7baa6977d3
commit
73a1111083
|
@ -80,6 +80,9 @@ func (server *Server) handleConnection(conn net.Conn) {
|
|||
for {
|
||||
mb, err := pReader.ReadMultiBuffer()
|
||||
if err != nil {
|
||||
if err == io.EOF {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
if err := w.WriteMultiBuffer(mb); err != nil {
|
||||
|
|
Loading…
Reference in New Issue