Add conntrack flows (#3406)

This commit is contained in:
Viktor Liu
2025-02-28 19:16:29 +01:00
committed by GitHub
parent f6d7bccfa0
commit c72e13d8e6
11 changed files with 357 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
//go:build !linux || android
package conntrack
import nftypes "github.com/netbirdio/netbird/client/internal/netflow/types"
func New(flowLogger nftypes.FlowLogger, iface nftypes.IFaceMapper) nftypes.ConnTracker {
return nil
}