Add runtime warnings

This commit is contained in:
世界 2022-07-24 22:54:16 +08:00
parent 29c329dc52
commit 32e2730ec6
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
29 changed files with 677 additions and 16 deletions

37
constant/os.go Normal file
View file

@ -0,0 +1,37 @@
package constant
import (
"github.com/sagernet/sing-box/constant/goos"
)
const IsAndroid = goos.IsAndroid == 1
const IsDarwin = goos.IsDarwin == 1
const IsDragonfly = goos.IsDragonfly == 1
const IsFreebsd = goos.IsFreebsd == 1
const IsHurd = goos.IsHurd == 1
const IsIllumos = goos.IsIllumos == 1
const IsIos = goos.IsIos == 1
const IsJs = goos.IsJs == 1
const IsLinux = goos.IsLinux == 1
const IsNacl = goos.IsNacl == 1
const IsNetbsd = goos.IsNetbsd == 1
const IsOpenbsd = goos.IsOpenbsd == 1
const IsPlan9 = goos.IsPlan9 == 1
const IsSolaris = goos.IsSolaris == 1
const IsWindows = goos.IsWindows == 1
const IsZos = goos.IsZos == 1