Fix packet count

This commit is contained in:
世界 2023-06-11 15:06:40 +08:00
parent 221f066dba
commit 2812461739
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -401,10 +401,10 @@ func CopyPacketWithPool(destinationConn N.PacketWriter, source N.PacketReader, r
}
n += int64(dataLen)
for _, counter := range readCounters {
counter(n)
counter(int64(dataLen))
}
for _, counter := range writeCounters {
counter(n)
counter(int64(dataLen))
}
notFirstTime = true
}