mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
terminate connection
This commit is contained in:
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…
x
Reference in New Issue
Block a user