mirror of https://github.com/v2ray/v2ray-core
handle error properly
parent
d6988f1a63
commit
e064ce65c8
|
@ -4,6 +4,7 @@ package mux
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"io"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -12,6 +13,7 @@ import (
|
||||||
"v2ray.com/core/app/log"
|
"v2ray.com/core/app/log"
|
||||||
"v2ray.com/core/app/proxyman"
|
"v2ray.com/core/app/proxyman"
|
||||||
"v2ray.com/core/common/buf"
|
"v2ray.com/core/common/buf"
|
||||||
|
"v2ray.com/core/common/errors"
|
||||||
"v2ray.com/core/common/net"
|
"v2ray.com/core/common/net"
|
||||||
"v2ray.com/core/common/signal"
|
"v2ray.com/core/common/signal"
|
||||||
"v2ray.com/core/proxy"
|
"v2ray.com/core/proxy"
|
||||||
|
@ -239,7 +241,9 @@ func (m *Client) fetchOutput() {
|
||||||
for {
|
for {
|
||||||
meta, err := reader.ReadMetadata()
|
meta, err := reader.ReadMetadata()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Trace(newError("failed to read metadata").Base(err))
|
if errors.Cause(err) != io.EOF {
|
||||||
|
log.Trace(newError("failed to read metadata").Base(err))
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -97,8 +97,8 @@ func (m *SessionManager) Close() {
|
||||||
m.closed = true
|
m.closed = true
|
||||||
|
|
||||||
for _, s := range m.sessions {
|
for _, s := range m.sessions {
|
||||||
s.input.CloseError()
|
s.input.Close()
|
||||||
s.output.CloseError()
|
s.output.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
m.sessions = make(map[uint16]*Session)
|
m.sessions = make(map[uint16]*Session)
|
||||||
|
|
Loading…
Reference in New Issue