mirror of https://github.com/v2ray/v2ray-core
release payload after writting
parent
def8a19a7e
commit
1bbbb6e3cd
|
@ -100,9 +100,10 @@ func (this *VMessOutboundHandler) handleRequest(session *encoding.ClientSession,
|
||||||
}
|
}
|
||||||
if !payload.IsEmpty() {
|
if !payload.IsEmpty() {
|
||||||
if err := streamWriter.Write(payload); err != nil {
|
if err := streamWriter.Write(payload); err != nil {
|
||||||
log.Info("VMess|Outbound: Failed to write payload. Disabling connection reuse.")
|
log.Info("VMess|Outbound: Failed to write payload. Disabling connection reuse.", err)
|
||||||
conn.SetReusable(false)
|
conn.SetReusable(false)
|
||||||
}
|
}
|
||||||
|
payload.Release()
|
||||||
}
|
}
|
||||||
writer.SetCached(false)
|
writer.SetCached(false)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue