mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-14 12:38:45 +00:00
12 lines
252 B
Go
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
|
|
}
|