Fix merge conflict

This commit is contained in:
Viktor Liu 2025-03-05 19:11:20 +01:00
parent e9f11fb11b
commit 0a042ac36d
2 changed files with 2 additions and 2 deletions

View File

@ -299,7 +299,7 @@ func (t *TCPTracker) updateState(key ConnKey, conn *TCPConnTrack, flags uint8, i
} else if flags&TCPRst != 0 {
conn.State = TCPStateClosed
conn.SetTombstone()
t.sendEvent(nftypes.TypeEnd, key, conn)
t.sendEvent(nftypes.TypeEnd, conn)
}
case TCPStateFinWait1:
@ -313,7 +313,7 @@ func (t *TCPTracker) updateState(key ConnKey, conn *TCPConnTrack, flags uint8, i
case flags&TCPRst != 0:
conn.State = TCPStateClosed
conn.SetTombstone()
t.sendEvent(nftypes.TypeEnd, key, conn)
t.sendEvent(nftypes.TypeEnd, conn)
}
case TCPStateFinWait2: