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() {
|
||||
payload := alloc.NewLocalBuffer(2048)
|
||||
defer payload.Release()
|
||||
for {
|
||||
for this.State() != StateTerminated {
|
||||
payload.Reset()
|
||||
nBytes, err := conn.Read(payload.Value)
|
||||
if err != nil {
|
||||
|
@ -391,6 +391,7 @@ func (this *Connection) Terminate() {
|
|||
}
|
||||
log.Info("KCP|Connection: Terminating connection to ", this.RemoteAddr())
|
||||
|
||||
this.SetState(StateTerminated)
|
||||
this.writer.Close()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue