Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 49d54cc

Browse files
authored
fix: remote conn statistic error (#1776)
TCP handshake traffic should be counted as upload traffic for the remote connection
1 parent 1c5f4a3 commit 49d54cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tunnel/tunnel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ func handleTCPConn(connCtx C.ConnContext) {
547547
}
548548
logMetadata(metadata, rule, remoteConn)
549549

550-
remoteConn = statistic.NewTCPTracker(remoteConn, statistic.DefaultManager, metadata, rule, 0, int64(peekLen), true)
550+
remoteConn = statistic.NewTCPTracker(remoteConn, statistic.DefaultManager, metadata, rule, int64(peekLen), 0, true)
551551
defer func(remoteConn C.Conn) {
552552
_ = remoteConn.Close()
553553
}(remoteConn)

0 commit comments

Comments
 (0)