mirror of https://github.com/v2ray/v2ray-core
fix data race in kcp connection
parent
5ae8bfbda1
commit
2a04819582
|
@ -256,7 +256,7 @@ func (v *ReceivingWorker) Write(seg Segment) error {
|
||||||
ackSeg.Conv = v.conn.conv
|
ackSeg.Conv = v.conn.conv
|
||||||
ackSeg.ReceivingNext = v.nextNumber
|
ackSeg.ReceivingNext = v.nextNumber
|
||||||
ackSeg.ReceivingWindow = v.nextNumber + v.windowSize
|
ackSeg.ReceivingWindow = v.nextNumber + v.windowSize
|
||||||
if v.conn.state == StateReadyToClose {
|
if v.conn.State() == StateReadyToClose {
|
||||||
ackSeg.Option = SegmentOptionClose
|
ackSeg.Option = SegmentOptionClose
|
||||||
}
|
}
|
||||||
return v.conn.output.Write(ackSeg)
|
return v.conn.output.Write(ackSeg)
|
||||||
|
|
Loading…
Reference in New Issue