Skip to content

Commit ce52c34

Browse files
committed
chore: cleaned up some confusing code
1 parent d4478db commit ce52c34

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

tunnel/statistic/tracker.go

+8-13
Original file line numberDiff line numberDiff line change
@@ -117,24 +117,19 @@ func (tt *tcpTracker) Upstream() any {
117117
}
118118

119119
func parseRemoteDestination(addr net.Addr, conn C.Connection) string {
120-
if addr == nil && conn != nil {
121-
return conn.RemoteDestination()
122-
}
123-
if addrPort, err := netip.ParseAddrPort(addr.String()); err == nil && addrPort.Addr().IsValid() {
124-
return addrPort.Addr().String()
125-
} else {
126-
if conn != nil {
127-
return conn.RemoteDestination()
128-
} else {
129-
return ""
120+
if addr != nil {
121+
if addrPort, err := netip.ParseAddrPort(addr.String()); err == nil && addrPort.Addr().IsValid() {
122+
return addrPort.Addr().String()
130123
}
131124
}
125+
if conn != nil {
126+
return conn.RemoteDestination()
127+
}
128+
return ""
132129
}
133130

134131
func NewTCPTracker(conn C.Conn, manager *Manager, metadata *C.Metadata, rule C.Rule, uploadTotal int64, downloadTotal int64, pushToManager bool) *tcpTracker {
135-
if conn != nil {
136-
metadata.RemoteDst = parseRemoteDestination(conn.RemoteAddr(), conn)
137-
}
132+
metadata.RemoteDst = parseRemoteDestination(conn.RemoteAddr(), conn)
138133

139134
t := &tcpTracker{
140135
Conn: conn,

0 commit comments

Comments
 (0)