diff --git a/src/tun/tun_linux.go b/src/tun/tun_linux.go index 16deb8e5..d87552b7 100644 --- a/src/tun/tun_linux.go +++ b/src/tun/tun_linux.go @@ -1,5 +1,5 @@ -//go:build !mobile -// +build !mobile +//go:build linux || android +// +build linux android package tun diff --git a/src/tun/tun_other.go b/src/tun/tun_other.go index dd33708e..075ccfe1 100644 --- a/src/tun/tun_other.go +++ b/src/tun/tun_other.go @@ -1,5 +1,5 @@ -//go:build !linux && !darwin && !windows && !openbsd && !freebsd && !mobile -// +build !linux,!darwin,!windows,!openbsd,!freebsd,!mobile +//go:build !linux && !darwin && !ios && !android && !windows && !openbsd && !freebsd && !mobile +// +build !linux,!darwin,!ios,!android,!windows,!openbsd,!freebsd,!mobile package tun