mirror of https://github.com/v2ray/v2ray-core
terminate connection
parent
7385c05f29
commit
b8421f659f
|
@ -365,7 +365,7 @@ func (this *Connection) FetchInputFrom(conn io.Reader) {
|
||||||
go func() {
|
go func() {
|
||||||
payload := alloc.NewLocalBuffer(2048)
|
payload := alloc.NewLocalBuffer(2048)
|
||||||
defer payload.Release()
|
defer payload.Release()
|
||||||
for {
|
for this.State() != StateTerminated {
|
||||||
payload.Reset()
|
payload.Reset()
|
||||||
nBytes, err := conn.Read(payload.Value)
|
nBytes, err := conn.Read(payload.Value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -391,6 +391,7 @@ func (this *Connection) Terminate() {
|
||||||
}
|
}
|
||||||
log.Info("KCP|Connection: Terminating connection to ", this.RemoteAddr())
|
log.Info("KCP|Connection: Terminating connection to ", this.RemoteAddr())
|
||||||
|
|
||||||
|
this.SetState(StateTerminated)
|
||||||
this.writer.Close()
|
this.writer.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue