Files
anubis-mirror/internal/fingerprint/tcp_unsupported.go
2025-07-18 20:38:19 +00:00

12 lines
252 B
Go

//go:build !linux && !freebsd
package fingerprint
import "net"
// AssignTCPFingerprint is not supported on this platform
func AssignTCPFingerprint(conn net.Conn) (*JA4T, error) {
// Not supported on macOS and other platforms
return &JA4T{}, nil
}