mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Fix packet count
This commit is contained in:
parent
221f066dba
commit
2812461739
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue